theme_submenu($links)
drupal/includes/theme.inc, line 1239
Return a themed submenu, typically displayed under the tabs.
$links An array of links.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
function theme_submenu($links) {
return '<div class="submenu">' . implode(' | ', $links) . '</div>';
}