theme_menu_item_link($item, $link_item)theme_menu_item_link($link)Generate the HTML output for a single menu link.
drupal/includes/menu.inc, line 1126
<?php
function theme_menu_item_link($link) {
if (empty($link['localized_options'])) {
$link['localized_options'] = array();
}
return l($link['title'], $link['href'], $link['localized_options']);
}
?>