advagg_mod.install in Advanced CSS/JS Aggregation 8.2
Same filename and directory in other branches
Handles Advanced Aggregation mod submodule installation and upgrade tasks.
File
advagg_mod/advagg_mod.installView source
<?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();
}
Functions
Name | Description |
---|---|
advagg_mod_update_8201 | Implements hook_update_N(). |