menu_load

  1. drupal
    1. 6 menu.module function
    2. 7 menu.module function
Drupal 7 menu_load($menu_name)

Load the data for a single custom menu.

Parameters

$menu_name: The unique name of a custom menu to load.

Return value

Array defining the custom menu, or FALSE if the menu doesn't exist.

11 calls to menu_load()

1 string reference to 'menu_load'

File

modules/menu/menu.module, line 219
Allows administrators to customize the site's navigation menus.

Code

function menu_load($menu_name) {
  $all_menus = menu_load_all();
  return isset($all_menus[$menu_name]) ? $all_menus[$menu_name] : FALSE;
}