function menu_cache_clear_all

Same name in other branches
  1. 8.9.x core/includes/menu.inc \menu_cache_clear_all()

Clears all cached menu data.

This should be called any time broad changes might have been made to the router items or menu links.

Related topics

5 calls to menu_cache_clear_all()
book_uninstall in modules/book/book.install
Implements hook_uninstall().
menu_delete in modules/menu/menu.module
Delete a custom menu and all contained links.
menu_enable in modules/menu/menu.module
Implements hook_enable().
menu_rebuild in includes/menu.inc
Populates the database tables used by various menu functions.
menu_save in modules/menu/menu.module
Save a custom menu.

File

includes/menu.inc, line 2728

Code

function menu_cache_clear_all() {
    cache_clear_all('*', 'cache_menu', TRUE);
    menu_reset_static_cache();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.