parent
bf4e492fa1
commit
4f5a5c83bc
|
@ -263,6 +263,22 @@ class Navigation implements ArrayAccess, Countable, IteratorAggregate
|
|||
return empty($this->items);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return whether this navigation has any renderable items
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function hasRenderableItems()
|
||||
{
|
||||
foreach ($this->getItems() as $item) {
|
||||
if ($item->shouldRender()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return this navigation's layout
|
||||
*
|
||||
|
|
|
@ -27,7 +27,7 @@ if (isset($this->actions)) {
|
|||
}
|
||||
}
|
||||
|
||||
if ($navigation->isEmpty()) {
|
||||
if ($navigation->isEmpty() || !$navigation->hasRenderableItems()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ if (! empty($links)) {
|
|||
}
|
||||
}
|
||||
|
||||
if ($navigation->isEmpty()) {
|
||||
if ($navigation->isEmpty() || !$navigation->hasRenderableItems()) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue