public function MenuLinkManager::countMenuLinks in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Menu/MenuLinkManager.php \Drupal\Core\Menu\MenuLinkManager::countMenuLinks()
Counts the total number of menu links.
Parameters
string $menu_name: (optional) The menu name to count by. Defaults to all menus.
Return value
int The number of menu links in the named menu, or in all menus if the menu name is NULL.
Overrides MenuLinkManagerInterface::countMenuLinks
File
- core/
lib/ Drupal/ Core/ Menu/ MenuLinkManager.php, line 314 - Contains \Drupal\Core\Menu\MenuLinkManager.
Class
- MenuLinkManager
- Manages discovery, instantiation, and tree building of menu link plugins.
Namespace
Drupal\Core\MenuCode
public function countMenuLinks($menu_name = NULL) {
return $this->treeStorage
->countMenuLinks($menu_name);
}