function _quicktabs_get_style_css in Quick Tabs 6.3
Same name and namespace in other branches
- 6.2 quicktabs.module \_quicktabs_get_style_css()
- 7.3 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_add_css in ./
quicktabs.module - Fetch the necessary CSS files for the tab styles.
File
- ./
quicktabs.module, line 448
Code
function _quicktabs_get_style_css($style = 'nostyle') {
static $tabstyles;
if ($style != 'nostyle') {
if (!isset($tabstyles)) {
$tabstyles = module_invoke_all('quicktabs_tabstyles');
}
foreach ($tabstyles as $css_file => $tabstyle) {
if ($style == $tabstyle) {
return $css_file;
}
}
}
return 'nostyle';
}