function hook_menu_link_insert
Inform modules that a menu link has been created.
This hook is used to notify modules that menu items have been created. 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
Related topics
1 function implements hook_menu_link_insert()
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_insert in modules/
simpletest/ tests/ menu_test.module - Implements hook_menu_link_insert().
File
-
modules/
system/ system.api.php, line 1365
Code
function hook_menu_link_insert($link) {
// In our sample case, we track menu items as editing sections
// of the site. These are stored in our table as 'disabled' items.
$record['mlid'] = $link['mlid'];
$record['menu_name'] = $link['menu_name'];
$record['status'] = 0;
drupal_write_record('menu_example', $record);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.