You are here

function rave_alerts_block_info in RAVE Alerts 7

Same name and namespace in other branches
  1. 1.0.x rave_alerts.module \rave_alerts_block_info()

Implements hook_block_info().

File

./rave_alerts.module, line 67
CU Alerts module

Code

function rave_alerts_block_info() {
  $blocks['rave_alerts'] = array(
    'info' => t('RAVE Alerts'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}