function menu_ui_menu_insert

menu_ui_menu_insert(Menu $menu)

Implements hook_ENTITY_TYPE_insert( for menu entities.

File

core/modules/menu_ui/menu_ui.module, line 76
Allows administrators to customize the site's navigation menus.

Code

function menu_ui_menu_insert(Menu $menu) {
  menu_cache_clear_all();
  // Invalidate the block cache to update menu-based derivatives.
  if (\Drupal::moduleHandler()->moduleExists('block')) {
    \Drupal::service('plugin.manager.block')->clearCachedDefinitions();
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!menu_ui!menu_ui.module/function/menu_ui_menu_insert/8.1.x