function statistics_preprocess_block in Drupal 9
Same name and namespace in other branches
- 8 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';
}
}