function _menu_router_cache in Drupal 7
Same name and namespace in other branches
- 6 includes/menu.inc \_menu_router_cache()
Stores the menu router if we have it in memory.
Related topics
3 calls to _menu_router_cache()
- menu_get_router in includes/
menu.inc - Gets the menu router.
- menu_router_build in includes/
menu.inc - Collects and alters the menu definitions.
- _menu_find_router_path in includes/
menu.inc - Finds the router path which will serve this path.
File
- includes/
menu.inc, line 2850 - API for the Drupal menu system.
Code
function _menu_router_cache($new_menu = NULL) {
$menu =& drupal_static(__FUNCTION__);
if (isset($new_menu)) {
$menu = $new_menu;
}
return $menu;
}