function site_alert_block_info in Site Alert 7
Implements hook_block_info().
File
- ./site_alert.module, line 205 
- Core functionality for the Site Alert module.
Code
function site_alert_block_info() {
  $blocks = array();
  $blocks['site_alert'] = array(
    // The name that will appear in the block list.
    'info' => t('Site Alert Block'),
  );
  return $blocks;
}