theme_menu_local_task($link, $active = FALSE)
drupal/includes/menu.inc, line 1195
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. |
function theme_menu_local_task($link, $active = FALSE) {
return '<li ' . ($active ? 'class="active" ' : '') . '>' . $link . "</li>\n";
}