function theme_biblio_sort_tabs in Bibliography Module 7
1 theme call to theme_biblio_sort_tabs()
- biblio_page_header in includes/
biblio.pages.inc
File
- includes/
biblio_theme.inc, line 1392
Code
function theme_biblio_sort_tabs($vars) {
$links = $vars['links'];
$style = $vars['tabs_style'];
$output = '';
if ($style) {
$output = '<ul class="tabs secondary">';
}
foreach ($links as $l) {
$output .= _biblio_sort_tab($l, $style);
}
if ($style) {
$output .= '</ul>';
}
return $output;
}