Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / language_switch_links_alter.twig
1 /**
2  * Implements hook_language_switch_links_alter().
3  */
4 function {{ machine_name }}_language_switch_links_alter(array &$links, $type, $path) {
5   global $language;
6
7   if ($type == LANGUAGE_TYPE_CONTENT && isset($links[$language->language])) {
8     foreach ($links[$language->language] as $link) {
9       $link['attributes']['class'][] = 'active-language';
10     }
11   }
12 }