function menu_reset_static_cache

Resets the menu system static cache.

Related topics

3 calls to menu_reset_static_cache()
menu_cache_clear in drupal/includes/menu.inc
Clears the cached data for a single named menu.
menu_cache_clear_all in drupal/includes/menu.inc
Clears all cached menu data.
system_flush_caches in drupal/modules/system/system.module
Implements hook_flush_caches().

File

drupal/includes/menu.inc, line 2718
API for the Drupal menu system.

Code

function menu_reset_static_cache() {
  drupal_static_reset('_menu_build_tree');
  drupal_static_reset('menu_tree');
  drupal_static_reset('menu_tree_all_data');
  drupal_static_reset('menu_tree_page_data');
  drupal_static_reset('menu_load_all');
  drupal_static_reset('menu_link_get_preferred');
}