1.20.x menu.inc | theme_menu_local_tasks($variables) |
Returns HTML for primary and secondary local tasks.
Parameters
$variables: An associative array containing:
- primary: (optional) An array of local tasks (tabs).
- secondary: (optional) An array of local tasks (tabs).
See also
Related topics
File
- includes/
menu.inc, line 2448 - API for the Backdrop menu system.
Code
function theme_menu_local_tasks($variables) {
$output = '';
if (!empty($variables['primary'])) {
$variables['primary']['#prefix'] = '<h2 class="element-invisible">' . t('Primary tabs') . '</h2>';
$variables['primary']['#prefix'] .= '<ul class="tabs primary">';
$variables['primary']['#suffix'] = '</ul>';
$output .= backdrop_render($variables['primary']);
}
if (!empty($variables['secondary'])) {
$variables['secondary']['#prefix'] = '<h2 class="element-invisible">' . t('Secondary tabs') . '</h2>';
$variables['secondary']['#prefix'] .= '<ul class="tabs secondary">';
$variables['secondary']['#suffix'] = '</ul>';
$output .= backdrop_render($variables['secondary']);
}
return $output;
}