function advagg_css_array in Advanced CSS/JS Aggregation 6
Same name and namespace in other branches
- 7 advagg.module \advagg_css_array()
Logic to figure out what kind of css tags to use.
Parameters
$external_no_preprocess: array of css files ($media, $href)
$module_no_preprocess: array of css files ($media, $href)
$output_no_preprocess: array of css files ($media, $href)
$output_preprocess: array of css files ($media, $href, $prefix, $suffix)
$theme_no_preprocess: array of css files ($media, $href)
$inline_no_preprocess: array of css data to inline ($media, $data)
$files_included: array of css files included. $a[$media][] = $filename
$files_aggregates_included: array of css files & aggregates included. $a[$media][] = $filename
$inline_included: array of inline css included. $a[$media][] = $datablob;
Return value
html for loading the css. html for the head.
1 string reference to 'advagg_css_array'
- advagg_get_js_css_get_array in ./
advagg.module - Return a large array of the CSS & JS files loaded on this page.
File
- ./
advagg.module, line 3873 - Advanced CSS/JS aggregation module
Code
function advagg_css_array($external_no_preprocess, $module_no_preprocess, $output_no_preprocess, $output_preprocess, $theme_no_preprocess, $inline_no_preprocess, $inline_included, $files_included, $files_aggregates_included) {
return array(
'inline' => $inline_included,
'files' => $files_included,
'files_aggregates' => $files_aggregates_included,
);
}