theme_submenu($links)theme_submenu($variables)Return a themed submenu, typically displayed under the tabs.
$links An array of links.
5/includes/theme.inc, line 709
<?php
function theme_submenu($links) {
return '<div class="submenu">'. implode(' | ', $links) .'</div>';
}
?>