function theme_submenu
Return a themed submenu, typically displayed under the tabs.
Parameters
$links: An array of links.
Related topics
Archivo
- drupal-6.x/
includes/ theme.inc, line 1324 - The theme system, which controls the output of Drupal.
Código
function theme_submenu($links) {
return '<div class="submenu">' . implode(' | ', $links) . '</div>';
}