function _menu_router_cache
Same name and namespace in other branches
- 6.x drupal-6.x/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 drupal-7.x/
includes/ menu.inc - Gets the menu router.
- menu_router_build in drupal-7.x/
includes/ menu.inc - Collects and alters the menu definitions.
- _menu_find_router_path in drupal-7.x/
includes/ menu.inc - Finds the router path which will serve this path.
Archivo
- drupal-7.x/
includes/ menu.inc, line 2763 - API for the Drupal menu system.
Código
function _menu_router_cache($new_menu = NULL) {
$menu = &drupal_static(__FUNCTION__);
if (isset($new_menu)) {
$menu = $new_menu;
}
return $menu;
}