Returns TRUE if this page should have inline JS.

Return value

bool TRUE or FALSE. Default is FALSE.

4 calls to advagg_mod_inline_page_js()
advagg_mod_advagg_current_hooks_hash_array_alter dans advagg_mod/advagg_mod.module
Implements hook_advagg_current_hooks_hash_array_alter().
advagg_mod_advagg_modify_js_pre_render_alter dans advagg_mod/advagg_mod.module
Implements hook_advagg_modify_js_pre_render_alter().
advagg_mod_library_alter dans advagg_mod/advagg_mod.module
Implements hook_library_alter().
_advagg_mod_pre_render_scripts dans advagg_mod/advagg_mod.module
Callback for pre_render to inline all JavaScript on this page.

Fichier

advagg_mod/advagg_mod.module, line 3249

Code

function advagg_mod_inline_page_js() {
    $visibility = variable_get('advagg_mod_inline_js_visibility', ADVAGG_MOD_VISIBILITY_LISTED);
    $pages = variable_get('advagg_mod_inline_js_pages', '');
    return advagg_mod_match_path($pages, $visibility);
}