Interim commit.
[yaffs-website] / web / modules / contrib / advagg / advagg_mod / advagg_mod.install
1 <?php
2
3 /**
4  * @file
5  * Handles Advanced Aggregation mod submodule installation and upgrade tasks.
6  */
7
8 /**
9  * Implements hook_update_N().
10  *
11  * Set the css_defer_admin setting value.
12  */
13 function advagg_mod_update_8201() {
14   \Drupal::service('config.factory')
15     ->getEditable('advagg_mod.settings')
16     ->set('css_defer_admin', FALSE)
17     ->save();
18 }