function luxe_variable_info in Luxe 7
Implements hook_variable_info().
File
- ./
luxe.variable.inc, line 25 - Links variables for translation.
Code
function luxe_variable_info($options) {
// This is the very minimum we need, some descriptive name.
$variable['luxe_login_title'] = array(
'title' => t('Login Form Title'),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_recover_text'] = array(
'title' => t("Text for the login form's 'recover password' link."),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_login_register_title'] = array(
'title' => t('Title for login form registration block'),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_login_register_title'] = array(
'title' => t('Registration block text for login form'),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_register_title'] = array(
'title' => t('Registration Form Title'),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_register_username_description'] = array(
'title' => t('Registration Form Username Field Description'),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_register_mail_description'] = array(
'title' => t('Registration Form Email Field Description'),
'group' => 'luxe',
'localize' => TRUE,
);
$variable['luxe_recover_title'] = array(
'title' => t('Password Recovery Form Title'),
'group' => 'luxe',
'localize' => TRUE,
);
return $variable;
}