| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_menu_local_task($link, $active = FALSE) |
Generate the HTML output for a single local task link.
includes/
<?php
function theme_menu_local_task($link, $active = FALSE) {
return '<li ' . ($active ? 'class="active" ' : '') . '>' . $link . "</li>\n";
}
?>
Kommentare
Kommentar hinzufügen