function template_preprocess_menu_local_task

Same name and namespace in other branches
  1. 9 core/includes/theme.inc \template_preprocess_menu_local_task()
  2. 8.9.x core/includes/menu.inc \template_preprocess_menu_local_task()
  3. 10 core/includes/theme.inc \template_preprocess_menu_local_task()

Prepares variables for single local task link templates.

Default template: menu-local-task.html.twig.

Parameters

array $variables: An associative array containing:

  • element: A render element containing:

    • #link: A menu link array with 'title', 'url', and (optionally) 'localized_options' keys.
    • #active: A boolean indicating whether the local task is active.

File

core/includes/theme.inc, line 1765

Code

function template_preprocess_menu_local_task(&$variables) {
    $link = $variables['element']['#link'];
    $link += [
        'localized_options' => [],
    ];
    $link_text = $link['title'];
    if (!empty($variables['element']['#active'])) {
        $variables['is_active'] = TRUE;
    }
    $link['localized_options']['set_active_class'] = TRUE;
    $variables['link'] = [
        '#type' => 'link',
        '#title' => $link_text,
        '#url' => $link['url'],
        '#options' => $link['localized_options'],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.