You are here

function advagg_mod_advagg_hooks_implemented_alter in Advanced CSS/JS Aggregation 7.2

Same name and namespace in other branches
  1. 8.2 advagg_mod/advagg_mod.module \advagg_mod_advagg_hooks_implemented_alter()

Implements hook_advagg_hooks_implemented_alter().

Related topics

File

advagg_mod/advagg_mod.module, line 1085
Advanced aggregation modifier module.

Code

function advagg_mod_advagg_hooks_implemented_alter(&$hooks, $all) {
  if ($all) {
    $hooks += array(
      'advagg_mod_get_lists_alter' => array(),
    );
  }
}