function phptemplate_menu_local_tasks in Drupal 5
Same name and namespace in other branches
- 6 themes/garland/template.php \phptemplate_menu_local_tasks()
Returns the rendered local tasks. The default implementation renders them as tabs.
Related topics
File
- themes/
garland/ template.php, line 81
Code
function phptemplate_menu_local_tasks() {
$output = '';
if ($primary = menu_primary_local_tasks()) {
$output .= "<ul class=\"tabs primary\">\n" . $primary . "</ul>\n";
}
return $output;
}