function aggregator_preprocess_block

Implements hook_preprocess_HOOK() for block.tpl.php.

File

drupal/core/modules/aggregator/aggregator.module, line 806
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_preprocess_block(&$variables) {
  if ($variables['block']->module == 'aggregator') {
    $variables['attributes']['role'] = 'complementary';
  }
}