don't show see-all if less than hard max
This commit is contained in:
parent
749804f8cb
commit
12e0f89155
@ -103,11 +103,13 @@ class MoreMenu extends Menu
|
||||
$this->item($actionName, $args, $label, $description, $id, 'extended_menu');
|
||||
}
|
||||
|
||||
$seeAll = $this->seeAllItem();
|
||||
if ($total > self::HARD_MAX) {
|
||||
$seeAll = $this->seeAllItem();
|
||||
|
||||
if (!empty($seeAll)) {
|
||||
list($actionName, $args, $label, $description, $id) = $seeAll;
|
||||
$this->item($actionName, $args, $label, $description, $id, 'extended_menu see_all');
|
||||
if (!empty($seeAll)) {
|
||||
list($actionName, $args, $label, $description, $id) = $seeAll;
|
||||
$this->item($actionName, $args, $label, $description, $id, 'extended_menu see_all');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user