You are here

function user_registrationpassword_variable_info in User registration password 7

Implements hook_variable_info().

See also

variable.module

File

./user_registrationpassword.variable.inc, line 13
Definition of variables for Variable API module.

Code

function user_registrationpassword_variable_info($options) {
  $variables['user_registrationpassword_register_[mail_part]'] = array(
    'type' => 'user_registrationpassword_mail',
    'title' => t('Welcome, no approval, password is already set', array(), $options),
    'description' => t('Customize welcome e-mail messages sent to new members when password is already set.', array(), $options),
    'group' => 'user_mails',
  );
  return $variables;
}