function domain_registration_variable_info in Restrict Domain Registration 7
Implements hook_variable_info().
File
- ./
domain_registration.module, line 39 - Domain Registration module file.
Code
function domain_registration_variable_info($options) {
$variables = array();
$variables['domain_registration_message'] = array(
'type' => 'string',
'title' => t('Domain Registration Error message'),
'description' => t('This error message will be displayed when the email the user is trying to register with does not validate'),
'localize' => TRUE,
);
return $variables;
}