function menu_reset_static_cache

Resets the menu system static cache.

Related topics

4 calls to menu_reset_static_cache()

File

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