Same name in other branches
- 7.x-2.x quicktabs.module \quicktabs_get_css()
- 7.x-3.x quicktabs.module \quicktabs_get_css()
Fetch the necessary CSS files for the tab style.
File
-
./
quicktabs.module, line 491
Code
function quicktabs_get_css($style) {
if ($style == 'default') {
// Get the default style.
$style = variable_get('quicktabs_tabstyle', 'nostyle');
}
if ($style == 'nostyle') {
return array();
}
$style_css = _quicktabs_get_style_css($style);
return $style_css;
}