3 require_once('../config.php');
5 $zone = optional_param('zone', '', PARAM_RAW
);
7 if (!is_numeric($zone)) {
8 //not a path, but it looks like it anyway
9 $zone = clean_param($zone, PARAM_PATH
);
12 $PAGE->set_url('/admin/timezone.php');
13 $PAGE->set_context(context_system
::instance());
17 $strtimezone = get_string("timezone");
18 $strsavechanges = get_string("savechanges");
19 $strusers = get_string("users");
20 $strall = get_string("all");
22 $PAGE->set_title($strtimezone);
23 $PAGE->set_heading($strtimezone);
24 $PAGE->navbar
->add($strtimezone);
25 echo $OUTPUT->header();
27 echo $OUTPUT->heading("");
29 if (data_submitted() and !empty($zone) and confirm_sesskey()) {
31 $DB->execute("UPDATE {user} SET timezone = ?", array($zone));
34 $USER->timezone
= $zone;
36 echo $OUTPUT->notification('Timezone of all users changed', 'notifysuccess');
41 require_once($CFG->dirroot
.'/calendar/lib.php');
42 $timezones = core_date
::get_list_of_timezones(null, true);
44 echo '<center><form action="timezone.php" method="post">';
45 echo html_writer
::label($strusers . ' (' . $strall . '): ', 'menuzone');
46 echo html_writer
::select($timezones, "zone", $current);
47 echo "<input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />";
48 echo '<input type="submit" value="'.s($strsavechanges).'" />';
49 echo "</form></center>";
51 echo $OUTPUT->footer();