public function MenuTreeStorageInterface::countMenuLinks in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Menu/MenuTreeStorageInterface.php \Drupal\Core\Menu\MenuTreeStorageInterface::countMenuLinks()
Counts the total number of menu links in one menu or all menus.
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.
1 method overrides MenuTreeStorageInterface::countMenuLinks()
- MenuTreeStorage::countMenuLinks in core/
lib/ Drupal/ Core/ Menu/ MenuTreeStorage.php - Counts the total number of menu links in one menu or all menus.
File
- core/
lib/ Drupal/ Core/ Menu/ MenuTreeStorageInterface.php, line 279 - Contains \Drupal\Core\Menu\MenuTreeStorageInterface.
Class
- MenuTreeStorageInterface
- Defines an interface for storing a menu tree containing menu link IDs.
Namespace
Drupal\Core\MenuCode
public function countMenuLinks($menu_name = NULL);