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

Theme function to output content for classic Quicktabs style tabs.

1 theme call to theme_qt_quicktabs()
QuickQuicktabs::render in src/Plugin/QuickRender/QuickQuicktabs.php

File

./quicktabs.module, line 595

Code

function theme_qt_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;
}