You are here

function admin_menu_rebuild_links in Administration menu 6

3 calls to admin_menu_rebuild_links()
admin_menu_enable in ./admin_menu.module
Implementation of hook_enable().
admin_menu_exit in ./admin_menu.module
Implementation of hook_exit().
admin_menu_menu_alter in ./admin_menu.module
Implementation of hook_menu_alter().
2 string references to 'admin_menu_rebuild_links'
admin_menu_uninstall in ./admin_menu.install
Implementation of hook_uninstall().
admin_menu_update_6000 in ./admin_menu.install
Ensure that admin_menu is rebuilt after upgrading to D6.

File

./admin_menu.module, line 241
Renders a menu tree for administrative purposes as a dropdown menu at the top of the window.

Code

function admin_menu_rebuild_links($new_value = NULL) {
  static $rebuild = FALSE;
  if (isset($new_value)) {
    $rebuild = $new_value;
  }
  return $rebuild;
}