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
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/menu_link_delete.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/menu_link_delete.twig
new file mode 100644 (file)
index 0000000..5e1ff92
--- /dev/null
@@ -0,0 +1,9 @@
+/**
+ * Implements hook_menu_link_delete().
+ */
+function {{ machine_name }}_menu_link_delete($link) {
+  // Delete the record from our table.
+  db_delete('menu_example')
+    ->condition('mlid', $link['mlid'])
+    ->execute();
+}