function theme_menu_local_tasks in Drupal 4
Same name and namespace in other branches
- 5 includes/menu.inc \theme_menu_local_tasks()
- 6 includes/menu.inc \theme_menu_local_tasks()
- 7 includes/menu.inc \theme_menu_local_tasks()
Returns the rendered local tasks. The default implementation renders them as tabs.
Related topics
3 theme calls to theme_menu_local_tasks()
- chameleon_page in themes/chameleon/ chameleon.theme 
- phptemplate_page in themes/engines/ phptemplate/ phptemplate.engine 
- Prepare the values passed to the theme_page function to be passed into a pluggable template engine.
- theme_page in includes/theme.inc 
- Return an entire Drupal page displaying the supplied content.
File
- includes/menu.inc, line 726 
- 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;
}