function menu_menu_delete

Implements hook_menu_delete().

File

drupal/core/modules/menu/menu.module, line 297
Allows administrators to customize the site's navigation menus.

Code

function menu_menu_delete(Menu $menu) {
  menu_cache_clear_all();

  // Invalidate the block cache to update menu-based derivatives.
  if (module_exists('block')) {
    drupal_container()
      ->get('plugin.manager.block')
      ->clearCachedDefinitions();
  }
}