statistics_preprocess_block(&$variables)
Implements hook_preprocess_HOOK() for block templates.
File
- core/modules/statistics/statistics.module, line 189
- Logs and displays content statistics for a site.
Code
1 2 3 4 5 | function statistics_preprocess_block(& $variables ) { if ( $variables [ 'configuration' ][ 'provider' ] == 'statistics' ) { $variables [ 'attributes' ][ 'role' ] = 'navigation' ; } } |
Please login to continue.