1 menu.api.php hook_menu_delete($menu)

Respond to a custom menu deletion.

This hook is used to notify modules that a custom menu along with all links contained in it (if any) has been deleted. Contributed modules may use the information to perform actions based on the information entered into the menu system.

Parameters

$menu: An array representing a custom menu:

  • menu_name: The unique name of the custom menu.
  • title: The human readable menu title.
  • description: The custom menu description.

See also

hook_menu_insert()

hook_menu_update()

Related topics

File

core/modules/menu/menu.api.php, line 77
Hooks provided by the Menu module.

Code

function hook_menu_delete($menu) {
  // Delete the record from our state setting.
  $my_menus = state_get('my_module_menus', array());
  unset($my_menus[$menu['menu_name']]);
  state_set('my_module_menus', $my_menus);
}