function theme_menu_local_tasks in Drupal 6
Same name and namespace in other branches
- 4 includes/menu.inc \theme_menu_local_tasks()
- 5 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
2 theme calls to theme_menu_local_tasks()
- chameleon_page in themes/
chameleon/ chameleon.theme - template_preprocess_page in includes/
theme.inc - Process variables for page.tpl.php
File
- includes/
menu.inc, line 1459 - 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;
}