Theme function to output quicktabs.
1 theme call to theme_quicktabs()
- quicktabs_render dans ./
quicktabs.module - Render quicktabs.
Fichier
-
./
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;
}