Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / modules_uninstalled.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/modules_uninstalled.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/modules_uninstalled.twig
new file mode 100644 (file)
index 0000000..efc2dce
--- /dev/null
@@ -0,0 +1,11 @@
+/**
+ * Implements hook_modules_uninstalled().
+ */
+function {{ machine_name }}_modules_uninstalled($modules) {
+  foreach ($modules as $module) {
+    db_delete('mymodule_table')
+      ->condition('module', $module)
+      ->execute();
+  }
+  mymodule_cache_rebuild();
+}