menu_rebuild

  1. drupal
    1. 4.7 menu.inc
    2. 5 menu.inc
    3. 6
    4. 7
Versions
4.7 – 7 menu_rebuild()

(Re)populate the database tables used by various menu functions.

This function will clear and populate the {menu_router} table, add entries to {menu_links} for new router items, then remove stale items from {menu_links}. If called from update.php or install.php, it will also schedule a call to itself on the first real page load from menu_execute_active_handler(), because the maintenance page environment is different and leaves stale data in the menu tables.

Return value

TRUE if the menu was rebuilt, FALSE if another thread was rebuilding in parallel and the current thread just waited for completion.

Related topics

▾ 14 functions call menu_rebuild()

DrupalWebTestCase::drupalCreateContentType in drupal/modules/simpletest/drupal_web_test_case.php
Creates a custom content type based on default settings.
drupal_flush_all_caches in drupal/includes/common.inc
Flush all cached data on the site.
install_configure_form in drupal/includes/install.core.inc
Installation task; configure settings for the new site.
menu_enable in drupal/modules/menu/menu.module
Implements hook_enable().
menu_execute_active_handler in drupal/includes/menu.inc
Execute the page callback associated with the current path.
menu_uninstall in drupal/modules/menu/menu.install
Implements hook_uninstall().
node_type_delete_confirm_submit in drupal/modules/node/content_types.inc
Process content type delete confirm submissions.
node_type_form_submit in drupal/modules/node/content_types.inc
Implements hook_form_submit().
profile_admin_overview_submit in drupal/modules/profile/profile.admin.inc
Submit handler to update changed profile field weights and categories.
profile_field_form_submit in drupal/modules/profile/profile.admin.inc
Process profile_field_form submissions.
standard_install in drupal/profiles/standard/standard.install
Implements hook_install().
theme_disable in drupal/includes/theme.inc
Disable a given list of themes.
theme_enable in drupal/includes/theme.inc
Enable a given list of themes.
_locale_import_po in drupal/includes/locale.inc
Parses Gettext Portable Object file information and inserts into database

Code

drupal/includes/menu.inc, line 2576

<?php
function menu_rebuild() {
  if (!lock_acquire('menu_rebuild')) {
    // Wait for another request that is already doing this work.
    // We choose to block here since otherwise the router item may not
    // be available in menu_execute_active_handler() resulting in a 404.
    lock_wait('menu_rebuild');
    return FALSE;
  }

  $transaction = db_transaction();

  try {
    list($menu, $masks) = menu_router_build();
    _menu_router_save($menu, $masks);
    _menu_navigation_links_rebuild($menu);
    // Clear the menu, page and block caches.
    menu_cache_clear_all();
    _menu_clear_page_cache();

    if (defined('MAINTENANCE_MODE')) {
      variable_set('menu_rebuild_needed', TRUE);
    }
    else {
      variable_del('menu_rebuild_needed');
    }
  }
  catch (Exception $e) {
    $transaction->rollback();
    watchdog_exception('menu', $e);
  }

  lock_release('menu_rebuild');
  return TRUE;
}
?>