You are here

function statistics_preprocess_block in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/statistics/statistics.module \statistics_preprocess_block()
  2. 10 core/modules/statistics/statistics.module \statistics_preprocess_block()

Implements hook_preprocess_HOOK() for block templates.

File

core/modules/statistics/statistics.module, line 189
Logs and displays content statistics for a site.

Code

function statistics_preprocess_block(&$variables) {
  if ($variables['configuration']['provider'] == 'statistics') {
    $variables['attributes']['role'] = 'navigation';
  }
}