Same name and namespace in other branches
  1. 7.x-2.x advagg.api.php \hook_advagg_hooks_implemented_alter() 1 comment

Tell advagg about other hooks related to advagg.

Parameters

array $hooks: Array of hooks related to advagg.

bool $all: If FALSE get only the subset of hooks that alter the filename/contents.

See also

advagg_hooks_implemented()

advagg_bundler_advagg_hooks_implemented_alter()

Related topics

3 functions implement hook_advagg_hooks_implemented_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

advagg_css_minify_advagg_hooks_implemented_alter in advagg_css_minify/advagg_css_minify.module
Implements hook_advagg_hooks_implemented_alter().
advagg_js_minify_advagg_hooks_implemented_alter in advagg_js_minify/advagg_js_minify.module
Implements hook_advagg_hooks_implemented_alter().
advagg_mod_advagg_hooks_implemented_alter in advagg_mod/advagg_mod.module
Implements hook_advagg_hooks_implemented_alter().
1 invocation of hook_advagg_hooks_implemented_alter()
advagg_hooks_implemented in ./advagg.module
Get back what hooks are implemented.

File

./advagg.api.php, line 152

Code

function hook_advagg_hooks_implemented_alter(array &$hooks, $all) {
    if ($all) {
        $hooks['advagg_bundler_analysis_alter'] = [];
    }
}