theme_menu_local_task
- Versions
- 4.6 – 5
theme_menu_local_task($mid, $active,$primary)- 6
theme_menu_local_task($link,$active= FALSE)- 7
theme_menu_local_task($variables)
Generate the HTML output for a single local task link.
Related topics
Code
includes/menu.inc, line 1163
<?php
function theme_menu_local_task($link, $active = FALSE) {
return '<li '. ($active ? 'class="active" ' : '') .'>'. $link ."</li>\n";
}
?>Login or register to post comments 