Same name and namespace in other branches
  1. 7.x-3.x quicktabs.module \quicktabs_get_css() 1 comment
  2. 8.x-1.x quicktabs.module \quicktabs_get_css() 1 comment

Fetch the necessary CSS files for the tab styles.

1 call to quicktabs_get_css()
quicktabs_render in ./quicktabs.module
Render quicktabs.

File

./quicktabs.module, line 475

Code

function quicktabs_get_css($style) {
    if ($style == 'default') {
        // Get the default style.
        $style = variable_get('quicktabs_tabstyle', 'nostyle');
    }
    $style_css = _quicktabs_get_style_css($style);
    return $style_css;
}