function high_contrast_block_info in High contrast 7
Implements hook_block_info().
File
- ./
high_contrast.module, line 90  - High Contrast main module file.
 
Code
function high_contrast_block_info() {
  $blocks = [];
  $blocks['high_contrast_switcher'] = [
    'info' => t('High contrast switcher'),
    'cache' => DRUPAL_CACHE_GLOBAL,
  ];
  return $blocks;
}