theme_submenu($links)
drupal/includes/theme.inc, line 714
Return a themed submenu, typically displayed under the tabs.
$links An array of links.
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_submenu($links) {
return '<div class="submenu">'. implode(' | ', $links) .'</div>';
}