_menu_router_cache
- Versions
- 6 – 7
_menu_router_cache($new_menu = NULL)
Helper function to store the menu router if we have it in memory.
Related topics
Code
includes/menu.inc, line 1732
<?php
function _menu_router_cache($new_menu = NULL) {
static $menu = NULL;
if (isset($new_menu)) {
$menu = $new_menu;
}
return $menu;
}
?>Login or register to post comments 