Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / modules_uninstalled.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/modules_uninstalled.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/modules_uninstalled.twig
new file mode 100644 (file)
index 0000000..5fd9366
--- /dev/null
@@ -0,0 +1,9 @@
+/**
+ * Implements hook_modules_uninstalled().
+ */
+function {{ machine_name }}_modules_uninstalled($modules) {
+  if (in_array('lousy_module', $modules)) {
+    \Drupal::state()->delete('mymodule.lousy_module_compatibility');
+  }
+  mymodule_cache_rebuild();
+}