| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_submenu($links) |
Return a themed submenu, typically displayed under the tabs.
$links An array of links.
includes/
<?php
function theme_submenu($links) {
return '<div class="submenu">' . implode(' | ', $links) . '</div>';
}
?>
Kommentare
Kommentar hinzufügen