Same name in other branches
- 7.x-2.x quicktabs.module \_quicktabs_get_style_css()
- 8.x-1.x quicktabs.module \_quicktabs_get_style_css()
Helper function to get the css file for given style.
1 call to _quicktabs_get_style_css()
- quicktabs_get_css dans ./
quicktabs.module - Fetch the necessary CSS files for the tab style.
Fichier
-
./
quicktabs.module, line 567
Code
function _quicktabs_get_style_css($style) {
$tabstyles =& drupal_static(__FUNCTION__);
if (empty($tabstyles)) {
$cid = 'quicktabs_tabstyles';
$cache = cache_get($cid);
if (!$cache) {
$tabstyles = module_invoke_all('quicktabs_tabstyles');
cache_set($cid, $tabstyles);
}
else {
$tabstyles = $cache->data;
}
}
if ($css_file = array_search($style, $tabstyles)) {
return array(
'data' => $css_file,
);
}
return array();
}