You are here

function advagg_mod_install in Advanced CSS/JS Aggregation 8.4

Same name and namespace in other branches
  1. 8.3 advagg_mod/advagg_mod.install \advagg_mod_install()
  2. 7.2 advagg_mod/advagg_mod.install \advagg_mod_install()

Implements hook_install().

Clear caches.

File

advagg_mod/advagg_mod.install, line 36
Handles Advanced Aggregation mod submodule installation and upgrade tasks.

Code

function advagg_mod_install() {
  Cache::invalidateTags([
    'library_info',
  ]);
  \Drupal::cache('render')
    ->invalidateAll();
}