Returns TRUE if this page should have critical CSS inlined.

Return value

bool TRUE or FALSE. Default is FALSE.

3 calls to advagg_mod_css_defer_page()
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_css_pre_render_alter dans advagg_mod/advagg_mod.module
Implements hook_advagg_modify_css_pre_render_alter().
_advagg_mod_pre_render_styles dans advagg_mod/advagg_mod.module
A #pre_render callback to inline all CSS on this page.

Fichier

advagg_mod/advagg_mod.module, line 3261

Code

function advagg_mod_css_defer_page() {
    $visibility = variable_get('advagg_mod_css_defer_visibility', ADVAGG_MOD_VISIBILITY_LISTED);
    $pages = variable_get('advagg_mod_css_defer_pages', '');
    return advagg_mod_match_path($pages, $visibility);
}