You are here

function newsletter_block_info in Newsletter 7

Implements hook_block_info().

File

./newsletter.module, line 461
Defines menu items for newsletter administration, permissions and basic drupal hooks.

Code

function newsletter_block_info() {
  $blocks['newsletter_subscribe'] = array(
    'info' => t('Newsletter: Subscribe'),
  );
  return $blocks;
}