menu_ui_menu_update

menu_ui_menu_update(Menu $menu)

Implements hook_ENTITY_TYPE_update() for menu entities.

File

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

Code

function menu_ui_menu_update(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();
  }
}
doc_Drupal
2016-10-29 09:27:52
Comments
Leave a Comment

Please login to continue.