function language_preprocess_block

Implements hook_preprocess_HOOK() for block.html.twig.

File

drupal/core/modules/language/language.module, line 766
Add language handling functionality to Drupal.

Code

function language_preprocess_block(&$variables) {
  if ($variables['configuration']['module'] == 'language') {
    $variables['attributes']['role'] = 'navigation';
  }
}