function hook_menu_link_delete

7.x system.api.php hook_menu_link_delete($link)

Inform modules that a menu link has been deleted.

This hook is used to notify modules that menu items have been deleted. Contributed modules may use the information to perform actions based on the information entered into the menu system.

Parameters

$link: Associative array defining a menu link as passed into menu_link_save().

See also

hook_menu_link_insert()

hook_menu_link_update()

Related topics

1 function implements hook_menu_link_delete()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

menu_test_menu_link_delete in drupal-7.x/modules/simpletest/tests/menu_test.module
Implements hook_menu_link_delete().
1 invocation of hook_menu_link_delete()
_menu_delete_item in drupal-7.x/includes/menu.inc
Deletes a single menu link.

File

drupal-7.x/modules/system/system.api.php, line 1411
Hooks provided by Drupal core and the System module.

Code

function hook_menu_link_delete($link) {
  // Delete the record from our table.
  db_delete('menu_example')
    ->condition('mlid', $link['mlid'])
    ->execute();
}