Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / cache_flush.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/cache_flush.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/cache_flush.twig
new file mode 100644 (file)
index 0000000..9bacaf7
--- /dev/null
@@ -0,0 +1,8 @@
+/**
+ * Implements hook_cache_flush().
+ */
+function {{ machine_name }}_cache_flush() {
+  if (defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'update') {
+    _update_cache_clear();
+  }
+}