function olivero_preprocess_menu_local_task

Same name and namespace in other branches
  1. 9 core/themes/olivero/olivero.theme \olivero_preprocess_menu_local_task()
  2. 11.x core/themes/olivero/olivero.theme \olivero_preprocess_menu_local_task()

Implements hook_preprocess_HOOK() for menu-local-task templates.

File

core/themes/olivero/olivero.theme, line 431

Code

function olivero_preprocess_menu_local_task(&$variables) {
  $variables['link']['#options']['attributes']['class'][] = 'tabs__link';
  $variables['link']['#options']['attributes']['class'][] = 'js-tabs-link';
  // Ensure is-active class is set when the tab is active. The generic active
  // link handler applies stricter comparison rules than what is necessary for
  // tabs.
  if (isset($variables['is_active']) && $variables['is_active'] === TRUE) {
    $variables['link']['#options']['attributes']['class'][] = 'is-active';
  }
  if (isset($variables['element']['#level'])) {
    $variables['level'] = $variables['element']['#level'];
  }
}

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