Theme function to output quicktabs.

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

File

./quicktabs.module, line 502

Code

function theme_quicktabs($variables) {
    $element = $variables['element'];
    $output = '<div ' . drupal_attributes($element['#options']['attributes']) . '>';
    $output .= drupal_render($element['tabs']);
    $output .= drupal_render($element['container']);
    $output .= '</div>';
    return $output;
}