function help_preprocess_block

Implements hook_preprocess_HOOK() for block.tpl.php.

File

drupal/core/modules/help/help.module, line 73
Manages displaying online help.

Code

function help_preprocess_block(&$variables) {
  if ($variables['block']->module == 'system' && $variables['block']->delta == 'help') {
    $variables['attributes']['role'] = 'complementary';
  }
}