You are here

function advagg_bundler_update_8201 in Advanced CSS/JS Aggregation 8.2

Implements hook_update_N().

Set the bundler logic settings.

File

advagg_bundler/advagg_bundler.install, line 13
Handles Advanced Aggregation bundler submodule installation/upgrade tasks.

Code

function advagg_bundler_update_8201() {
  \Drupal::service('config.factory')
    ->getEditable('advagg_bundler.settings')
    ->set('css_logic', 0)
    ->set('js_logic', 0)
    ->save();
}