Version 1
[yaffs-website] / web / modules / contrib / advagg / advagg_mod / advagg_mod.install
diff --git a/web/modules/contrib/advagg/advagg_mod/advagg_mod.install b/web/modules/contrib/advagg/advagg_mod/advagg_mod.install
new file mode 100644 (file)
index 0000000..72691ff
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+/**
+ * @file
+ * Handles Advanced Aggregation mod submodule installation and upgrade tasks.
+ */
+
+/**
+ * Implements hook_update_N().
+ *
+ * Set the css_defer_admin setting value.
+ */
+function advagg_mod_update_8201() {
+  \Drupal::service('config.factory')
+    ->getEditable('advagg_mod.settings')
+    ->set('css_defer_admin', FALSE)
+    ->save();
+}