function _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
Code
function _menu_router_cache($new_menu = NULL) {
$menu =& drupal_static(__FUNCTION__);
if (isset($new_menu)) {
$menu = $new_menu;
}
return $menu;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.