function menu_load

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.

2 calls to menu_load()
MenuTestCase::addCustomMenu in drupal/modules/menu/menu.test
Add custom menu.
MenuTestCase::deleteCustomMenu in drupal/modules/menu/menu.test
Delete custom menu.

File

drupal/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;
}