You are here

function statistics_preprocess_block in Drupal 10

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

Implements hook_preprocess_HOOK() for block templates.

File

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

Code

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