function timezone_detect_admin_form in Timezone Detect 7
Same name and namespace in other branches
- 6 timezone_detect.admin.inc \timezone_detect_admin_form()
Administration form.
@todo:
- Option to notify user when their timezone is set automatically.
- Option to ASK user *before* their timezone gets set automatically.
- Option to use cdnjs for jstz library, rather than local file.
- Option to set $SESSION timezone for anonymouse users? See https://drupal.org/node/1985906.
1 string reference to 'timezone_detect_admin_form'
- timezone_detect_menu in ./
timezone_detect.module - Implements hook_menu().
File
- ./
timezone_detect.admin.inc, line 18 - Administration pages for Timezone Detect module.
Code
function timezone_detect_admin_form($form, &$form_state) {
$options = array(
TIMEZONE_DETECT_MODE_DEFAULT => t("Set timezone on login only if it is not yet set (recommended)"),
TIMEZONE_DETECT_MODE_LOGIN => t("Update timezone on every login"),
TIMEZONE_DETECT_MODE_ALWAYS => t("Update timezone whenever it changes"),
);
$form['timezone_detect_mode'] = array(
'#type' => 'radios',
'#title' => t("When to set a user's timezone automatically"),
'#default_value' => variable_get('timezone_detect_mode', TIMEZONE_DETECT_MODE_DEFAULT),
'#options' => $options,
'#description' => t("By default, Timezone Detect sets a user's timezone on login if it is not yet set. Alternatively, you can have the module update the user's timezone automatically on every login or whenever their timezone changes; be aware that these later settings will overwrite any manual timezone selection that the user may make."),
);
$form['timezone_detect_success_watchdog'] = array(
'#type' => 'checkbox',
'#title' => t("Log successful events in watchdog"),
'#default_value' => variable_get('timezone_detect_success_watchdog', TRUE),
'#description' => t("By default, Timezone Detect will create a log entry every time it sets a user's timezone. This can create unnecessary noise in your log files so you are likely to want to disable this once you are confident the feature works."),
);
return system_settings_form($form);
}