menu_list_system_menus()
Returns an array containing the names of system-defined (default) menus.
Related topics
- Menu system
- Define the navigation menus, local actions and tasks, and contextual links.
File
- core/includes/menu.inc, line 85
- API for the Drupal menu system.
Code
1 2 3 4 5 6 7 8 9 | function menu_list_system_menus() { return array ( 'tools' => 'Tools' , 'admin' => 'Administration' , 'account' => 'User account menu' , 'main' => 'Main navigation' , 'footer' => 'Footer menu' , ); } |
Please login to continue.