You are here

function theme_quicktabs in Quick Tabs 7.2

Same name and namespace in other branches
  1. 6.3 quicktabs.module \theme_quicktabs()
  2. 6.2 quicktabs.module \theme_quicktabs()

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