Same name and namespace in other branches
  1. 4.7.x includes/menu.inc \theme_menu_local_tasks()
  2. 5.x includes/menu.inc \theme_menu_local_tasks()
  3. 6.x includes/menu.inc \theme_menu_local_tasks()
  4. 7.x includes/menu.inc \theme_menu_local_tasks()

Returns the rendered local tasks. The default implementation renders them as tabs.

Related topics

File

includes/menu.inc, line 633
API for the Drupal menu system.

Code

function theme_menu_local_tasks() {
  $output = '';
  if ($primary = menu_primary_local_tasks()) {
    $output .= "<ul class=\"tabs primary\">\n" . $primary . "</ul>\n";
  }
  if ($secondary = menu_secondary_local_tasks()) {
    $output .= "<ul class=\"tabs secondary\">\n" . $secondary . "</ul>\n";
  }
  return $output;
}