function menu_list_system_menus

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/menu.inc \menu_list_system_menus()

Return an array containing the names of system-defined (default) menus.

Related topics

4 calls to menu_list_system_menus()
menu_delete_menu_confirm_submit in drupal-6.x/modules/menu/menu.admin.inc
Delete a custom menu and all items in it.
menu_delete_menu_page in drupal-6.x/modules/menu/menu.admin.inc
Menu callback; check access and get a confirm form for deletion of a custom menu.
menu_edit_menu in drupal-6.x/modules/menu/menu.admin.inc
Menu callback; Build the form that handles the adding/editing of a custom menu.
menu_get_menus in drupal-6.x/modules/menu/menu.module
Return an associative array of the custom menus names.

Archivo

drupal-6.x/includes/menu.inc, line 1228
API for the Drupal menu system.

Código

function menu_list_system_menus() {
  return array('navigation', 'primary-links', 'secondary-links');
}