You are here

advagg_bundler.install in Advanced CSS/JS Aggregation 8.3

Handles AdvAgg Bundler installation and upgrade tasks.

File

advagg_bundler/advagg_bundler.install
View source
<?php

/**
 * @file
 * Handles AdvAgg Bundler installation and upgrade tasks.
 */

/**
 * Implements hook_install().
 *
 * Clear some caches.
 */
function advagg_bundler_install() {
  \Drupal::cache('render')
    ->invalidateAll();
  \Drupal::cache('advagg')
    ->invalidateAll();
}

Functions

Namesort descending Description
advagg_bundler_install Implements hook_install().