You are here

function datereminder_block_info in Date Reminder 7

Implements hook_block_info().

Tell Drupal about the Subscriptions Interface block.

File

./datereminder.module, line 906
Support for reminders for nodes with dates.

Code

function datereminder_block_info() {
  $blocks[0]['info'] = t('Reminder request');
  $blocks[0]['cache'] = DRUPAL_CACHE_PER_PAGE;
  $blocks[0]['region'] = 'content';
  return $blocks;
}