function menu_primary_local_tasks

Same name and namespace in other branches
  1. 6.x drupal-6.x/includes/menu.inc \menu_primary_local_tasks()

Returns the rendered local tasks at the top level.

Related topics

2 calls to menu_primary_local_tasks()
menu_local_tabs in drupal-7.x/includes/menu.inc
Returns a renderable element for the primary and secondary tabs.
template_preprocess_overlay in drupal-7.x/modules/overlay/overlay.module
Implements template_preprocess_HOOK() for overlay.tpl.php

Archivo

drupal-7.x/includes/menu.inc, line 2219
API for the Drupal menu system.

Código

function menu_primary_local_tasks() {
  $links = menu_local_tasks(0);
  // Do not display single tabs.
  return ($links['tabs']['count'] > 1 ? $links['tabs']['output'] : '');
}