1 menu.inc | theme_menu_local_action($variables) |
Returns HTML for a single local action link.
Parameters
$variables: An associative array containing:
- element: A render element containing:
- #link: A menu link array with 'title', 'href', and 'localized_options' keys.
See also
Related topics
File
- core/
includes/ menu.inc, line 1868 - API for the Backdrop menu system.
Code
function theme_menu_local_action($variables) {
$link = $variables['element']['#link'];
$output = '<li>';
if (isset($link['href'])) {
$output .= l($link['title'], $link['href'], isset($link['localized_options']) ? $link['localized_options'] : array());
}
elseif (!empty($link['localized_options']['html'])) {
$output .= $link['title'];
}
else {
$output .= check_plain($link['title']);
}
$output .= "</li>\n";
return $output;
}