You are here

function newsletter_subscriber_variable_info in Newsletter 7.2

Implements hook_variable_info().

File

modules/subscriber/newsletter_subscriber.module, line 185
Module for the Newsletter Subscriber Entity

Code

function newsletter_subscriber_variable_info($options) {
  $variable['newsletter_subscriber_block_prefix'] = array(
    'title' => t('Newsletter subscribe block prefix'),
    'description' => t('This text will appear above the email address in the subscribe block.'),
    'type' => 'string',
    'access' => 'administer newsletter subscribers',
  );
  $variable['newsletter_subscriber_block_suffix'] = array(
    'title' => t('Newsletter subscribe block suffix'),
    'description' => t('This text will appear below the email address in the subscribe block.'),
    'type' => 'string',
    'access' => 'administer newsletter subscribers',
  );
  return $variable;
}