You are here

function umami_preprocess_links in Drupal 10

Same name and namespace in other branches
  1. 9 core/profiles/demo_umami/themes/umami/umami.theme \umami_preprocess_links()

Implements template_preprocess_links().

This makes it so array keys of #links items are added as a class. This functionality was removed in Drupal 8.1, but still necessary in some instances.

@todo remove in https://drupal.org/node/3120962

File

core/profiles/demo_umami/themes/umami/umami.theme, line 165
Functions to support theming in the Umami theme.

Code

function umami_preprocess_links(&$variables) {
  if (!empty($variables['links'])) {
    foreach ($variables['links'] as $key => $value) {
      if (!is_numeric($key)) {
        $class = Html::getClass($key);
        $variables['links'][$key]['attributes']
          ->addClass($class);
      }
    }
  }
}