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 modules/menu/menu.test
Add custom menu.
MenuTestCase::deleteCustomMenu in modules/menu/menu.test
Delete custom menu.

File

modules/menu/menu.module, line 219

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.