You are here

advagg_bundler.install in Advanced CSS/JS Aggregation 8.2

Handles Advanced Aggregation bundler submodule installation/upgrade tasks.

File

advagg_bundler/advagg_bundler.install
View source
<?php

/**
 * @file
 * Handles Advanced Aggregation bundler submodule installation/upgrade tasks.
 */

/**
 * Implements hook_update_N().
 *
 * Set the bundler logic settings.
 */
function advagg_bundler_update_8201() {
  \Drupal::service('config.factory')
    ->getEditable('advagg_bundler.settings')
    ->set('css_logic', 0)
    ->set('js_logic', 0)
    ->save();
}

Functions

Namesort descending Description
advagg_bundler_update_8201 Implements hook_update_N().