block_menu_delete(Menu $menu)
Implements hook_ENTITY_TYPE_delete() for menu entities.
File
- core/modules/block/block.module, line 260
- Controls the visual building blocks a page is constructed with.
Code
1 2 3 4 5 6 7 8 9 | function block_menu_delete(Menu $menu ) { if (! $menu ->isSyncing()) { foreach (Block::loadMultiple() as $block ) { if ( $block ->getPluginId() == 'system_menu_block:' . $menu ->id()) { $block -> delete (); } } } } |
Please login to continue.