/** * Theme function for output of the tabs. Use this to ADD extra classes. * The general structure 'ul.quicktabs_tabs li a' needs to be maintained * for the jQuery to work. * * @ingroup themeable */ function treefest_quicktabs_tabs($quicktabs, $active_tab = 'none') { $output = ''; $tabs_count = count($quicktabs['tabs']); if ($tabs_count <= 0) { return $output; } $index = 1; $output .= ''; return $output; }