function _quicktabs_get_style_css in Quick Tabs 7.3
Same name and namespace in other branches
- 6.3 quicktabs.module \_quicktabs_get_style_css()
- 6.2 quicktabs.module \_quicktabs_get_style_css()
- 7.2 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 in ./
quicktabs.module - Fetch the necessary CSS files for the tab style.
File
- ./
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();
}