theme_submenu

Definition

theme_submenu($links)
drupal/includes/theme.inc, line 714

Description

Return a themed submenu, typically displayed under the tabs.

Parameters

$links An array of links.

Related topics

Namesort iconDescription
Themeable functionsFunctions that display HTML, and which can be customized by themes.

Code

function theme_submenu($links) {
  return '<div class="submenu">'. implode(' | ', $links) .'</div>';
}