Definition

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

Description

Return a themed submenu, typically displayed under the tabs.

Parameters

$links An array of links.

Related topics

Namesort iconDescription
Default theme implementationsFunctions and templates that present output to the user, and can be implemented by themes.

Code

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