function sms_user_admin_settings in SMS Framework 7
Same name and namespace in other branches
- 5 modules/sms_user/sms_user.module \sms_user_admin_settings()
- 6.2 modules/sms_user/sms_user.admin.inc \sms_user_admin_settings()
- 6 modules/sms_user/sms_user.module \sms_user_admin_settings()
SMS admin settings form.
1 string reference to 'sms_user_admin_settings'
- sms_user_menu in modules/
sms_user/ sms_user.module - Implements hook_menu().
File
- modules/
sms_user/ sms_user.admin.inc, line 12 - sms_user.admin.inc SMS admin pages and functions.
Code
function sms_user_admin_settings($form, &$form_state) {
$form['sms_user_registration_form'] = array(
'#type' => 'radios',
'#title' => t('Show mobile fields during user registration'),
'#description' => t('Specify if the site should collect mobile information during registration.'),
'#options' => array(
t('Disabled'),
t('Optional'),
t('Required'),
),
'#default_value' => variable_get('sms_user_registration_form', 0),
);
$form['sms_user_confirmation_message'] = array(
'#type' => 'textfield',
'#title' => t('Confirmation message format'),
'#default_value' => variable_get('sms_user_confirmation_message', '[site:name] confirmation code: '),
'#description' => t('Specify the format for confirmation messages. Keep this as short as possible.'),
'#size' => 140,
'#maxlength' => 255,
);
// Add the token help to a collapsed fieldset at the end of the configuration page.
$form['tokens']['token_help'] = array(
'#type' => 'fieldset',
'#title' => t('Available Tokens List'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['tokens']['token_help']['content'] = array(
'#theme' => 'token_tree',
'#token_types' => array(),
);
/*
$form['tokens'] = array(
'#type' => 'fieldset',
'#title' => t('Available replacement patterns'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['tokens']['content']['#value'] = theme('token_tree', array('token_types' => array('sms_user')));
*/
// Sleep settings.
$form['sleep'] = array(
'#type' => 'fieldset',
'#title' => t('Global Sleep Settings'),
'#description' => t('Enable Sleep hours. Start and End times are global. Users may override these settings on an individual basis. If Start and End time are both 0:00, only individual overrides will be taken into account.'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['sleep']['sms_user_sleep'] = array(
'#type' => 'checkbox',
'#title' => t('Enable sleep hours'),
'#description' => t('If checked, users will be able to specifiy hours during which they will not receive messages from the site.'),
'#default_value' => variable_get('sms_user_sleep', 1),
);
// Determine whether to use the 24-hour or 12-hour clock based on site settings.
if (strpos(variable_get('date_format_short', 'm/d/Y - H:i'), 'g')) {
$format = 'g A';
}
else {
$format = 'H:00';
}
// Build the list of options based on format.
$hour = 0;
while ($hour < 24) {
$options[$hour] = date($format, mktime($hour));
$hour++;
}
$form['sleep']['sms_user_sleep_start_time'] = array(
'#title' => t('Start time'),
'#type' => 'select',
'#multiple' => FALSE,
'#options' => $options,
'#default_value' => variable_get('sms_user_sleep_start_time', 0),
);
$form['sleep']['sms_user_sleep_end_time'] = array(
'#title' => t('End time'),
'#type' => 'select',
'#multiple' => FALSE,
'#options' => $options,
'#default_value' => variable_get('sms_user_sleep_end_time', 0),
);
// SMS User opt-out settings.
$form['opt_out'] = array(
'#type' => 'fieldset',
'#title' => t('User Opt Out Settings'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['opt_out']['sms_user_allow_opt_out'] = array(
'#type' => 'checkbox',
'#title' => t('Allow users to opt-out of receiving messages from this site'),
'#description' => t('If checked, users will be able to opt out of receiving messages from the site.'),
'#default_value' => variable_get('sms_user_allow_opt_out', 1),
);
// Opt-in to user account switching on incoming SMS messages.
$form['incoming'] = array(
'#type' => 'fieldset',
'#title' => t('Incoming SMS Options'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['incoming']['sms_user_switch_account_incoming'] = array(
'#type' => 'checkbox',
'#title' => t('Automatically switch to authenticated incoming user.'),
'#description' => t('If checked, a user will be logged in if an incoming message is received with their registered number as recipient.'),
'#default_value' => variable_get('sms_user_switch_account_incoming', 0),
);
// Registration settings.
$form['registration'] = array(
'#type' => 'fieldset',
'#title' => t('Registration settings'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['registration']['sms_user_registration_enabled'] = array(
'#type' => 'checkbox',
'#title' => t('Enable registration'),
'#default_value' => variable_get('sms_user_registration_enabled', 0),
'#description' => t('If selected, users can create user accounts via SMS.'),
);
$form['registration']['sms_user_allow_password'] = array(
'#type' => 'checkbox',
'#title' => t('Allow password creation'),
'#default_value' => variable_get('sms_user_allow_password', 0),
'#description' => t('If selected, the user will be allowed to include a password in their registration request -- the password will be the first word in the first line of the request.'),
);
$form['registration']['sms_user_new_account_message'] = array(
'#type' => 'textarea',
'#title' => t('New user message'),
'#default_value' => variable_get('sms_user_new_account_message', ''),
'#description' => t('The message that will be sent to newly registered users. Leave empty for no message.'),
);
// Add the token help to a collapsed fieldset at the end of the registration page.
$form['registration']['tokens']['token_help'] = array(
'#type' => 'fieldset',
'#title' => t('Available Tokens List'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['registration']['tokens']['token_help']['content'] = array(
'#theme' => 'token_tree',
'#token_types' => array(),
);
/*
$form['registration']['tokens'] = array(
'#type' => 'fieldset',
'#title' => t('Available replacement patterns'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['registration']['tokens']['content']['#value'] = theme('token_tree', array('token_types' => array('sms_user')));
*/
$form['sms_user_max_chars'] = array(
'#type' => 'textfield',
'#default_value' => variable_get('sms_user_max_chars', SMS_USER_MAX_CHARS),
'#size' => 3,
'#title' => t('Maximum number of chars for SMS sending using actions'),
);
return system_settings_form($form);
}