menu_primary_local_tasks

  1. drupal
    1. 4.7
    2. 5
    3. 6 menu.inc
    4. 7 menu.inc
Versions
4.7 – 7 menu_primary_local_tasks()

Returns the rendered HTML of the primary local tasks.

Related topics

▾ 2 functions call 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.
theme_menu_local_tasks in includes/menu.inc
Returns the rendered local tasks. The default implementation renders them as tabs.

Code

includes/menu.inc, line 757

<?php
function menu_primary_local_tasks() {
  $local_tasks = menu_get_local_tasks();
  $pid = menu_get_active_nontask_item();
  $output = '';

  if (count($local_tasks[$pid]['children'])) {
    foreach ($local_tasks[$pid]['children'] as $mid) {
      $output .= theme('menu_local_task', $mid, menu_in_active_trail($mid), TRUE);
    }
  }

  return $output;
}
?>