| 5 theme.inc | theme_submenu($links) |
| 6 theme.inc | theme_submenu($links) |
Return a themed submenu, typically displayed under the tabs.
Parameters
$links: An array of links.
Related topics
File
- includes/
theme.inc, line 652 - The theme system, which controls the output of Drupal.
Code
function theme_submenu($links) {
return '<div class="submenu">' . implode(' | ', $links) . '</div>';
}
Login or register to post comments