Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / menu_link_insert.twig
1 /**
2  * Implements hook_menu_link_insert().
3  */
4 function {{ machine_name }}_menu_link_insert($link) {
5   // In our sample case, we track menu items as editing sections
6   // of the site. These are stored in our table as 'disabled' items.
7   $record['mlid'] = $link['mlid'];
8   $record['menu_name'] = $link['menu_name'];
9   $record['status'] = 0;
10   drupal_write_record('menu_example', $record);
11 }