function menu_reset_static_cache

7.x menu.inc menu_reset_static_cache()

Resets the menu system static cache.

Related topics

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

File

drupal-7.x/includes/menu.inc, line 2686
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');
}