Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / menu_link_delete.twig
1 /**
2  * Implements hook_menu_link_delete().
3  */
4 function {{ machine_name }}_menu_link_delete($link) {
5   // Delete the record from our table.
6   db_delete('menu_example')
7     ->condition('mlid', $link['mlid'])
8     ->execute();
9 }