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

Theme function to output tablinks for jQuery UI style tabs.

1 theme call to theme_qt_ui_tabs_tabset()
QuickUiTabs::render in src/Plugin/QuickRender/QuickUiTabs.php

File

./quicktabs.module, line 529

Code

function theme_qt_ui_tabs_tabset($vars) {
    $output = '<ul>';
    foreach ($vars['tabset']['tablinks'] as $i => $tab) {
        if (is_array($tab)) {
            $output .= '<li>' . drupal_render($tab) . '</li>';
        }
    }
    $output .= '</ul>';
    return $output;
}