You are here

function menu_primary_local_tasks in Drupal 6

Same name and namespace in other branches
  1. 8 core/includes/menu.inc \menu_primary_local_tasks()
  2. 4 includes/menu.inc \menu_primary_local_tasks()
  3. 5 includes/menu.inc \menu_primary_local_tasks()
  4. 7 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()
phptemplate_menu_local_tasks in themes/garland/template.php
Returns the rendered local tasks. The default implementation renders them as tabs. Overridden to split the secondary tasks.
theme_menu_local_tasks in includes/menu.inc
Returns the rendered local tasks. The default implementation renders them as tabs.

File

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

Code

function menu_primary_local_tasks() {
  return menu_local_tasks(0);
}