theme_menu_local_task($link, $active = FALSE)
6/includes/menu.inc, line 1138
Generate the HTML output for a single local task link.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
| Menu system | Define the navigation menus, and route page requests to code based on URLs. |
<?php
function theme_menu_local_task($link, $active = FALSE) {
return '<li '. ($active ? 'class="active" ' : '') .'>'. $link ."</li>\n";
}
?>