Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / themes_uninstalled.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/themes_uninstalled.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/themes_uninstalled.twig
new file mode 100644 (file)
index 0000000..21664d2
--- /dev/null
@@ -0,0 +1,9 @@
+/**
+ * Implements hook_themes_uninstalled().
+ */
+function {{ machine_name }}_themes_uninstalled(array $themes) {
+  // Remove some state entries depending on the theme.
+  foreach ($themes as $theme) {
+    \Drupal::state()->delete('example.' . $theme);
+  }
+}