Merge branch 'MDL-51720-28' of git://github.com/damyon/moodle into MOODLE_28_STABLE
[moodle.git] / admin / timezone.php
blob546b021816a59fb03bf42e376d197767431d2e40
1 <?php
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());
15 require_login();
17 require_capability('moodle/site:config', context_system::instance());
19 $strtimezone = get_string("timezone");
20 $strsavechanges = get_string("savechanges");
21 $strusers = get_string("users");
22 $strall = get_string("all");
24 $PAGE->set_title($strtimezone);
25 $PAGE->set_heading($strtimezone);
26 $PAGE->navbar->add($strtimezone);
27 echo $OUTPUT->header();
29 echo $OUTPUT->heading("");
31 if (data_submitted() and !empty($zone) and confirm_sesskey()) {
32 echo "<center>";
33 $DB->execute("UPDATE {user} SET timezone = ?", array($zone));
34 echo "</center>";
36 $USER->timezone = $zone;
37 $current = $zone;
38 echo $OUTPUT->notification('Timezone of all users changed', 'notifysuccess');
39 } else {
40 $current = 99;
43 require_once($CFG->dirroot.'/calendar/lib.php');
44 $timezones = get_list_of_timezones();
46 echo '<center><form action="timezone.php" method="post">';
47 echo html_writer::label($strusers . ' (' . $strall . '): ', 'menuzone');
48 echo html_writer::select($timezones, "zone", $current, array('99'=>get_string("serverlocaltime")));
49 echo "<input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />";
50 echo '<input type="submit" value="'.s($strsavechanges).'" />';
51 echo "</form></center>";
53 echo $OUTPUT->footer();