moodle/admin/timezone.php

43 lines
1.2 KiB
PHP
Raw Normal View History

2003-11-22 09:00:15 +00:00
<?php // $Id$
require_once('../config.php');
$zone = optional_param('zone', '', PARAM_PATH); //not a path, but it looks like it anyway
2003-11-22 09:00:15 +00:00
require_login();
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM, SITEID));
2003-11-22 09:00:15 +00:00
$strtimezone = get_string("timezone");
$strsavechanges = get_string("savechanges");
$strusers = get_string("users");
$strall = get_string("all");
print_header($strtimezone, $strtimezone, $strtimezone);
print_heading("");
if (!empty($zone) and confirm_sesskey()) {
2003-11-22 09:00:15 +00:00
$db->debug = true;
echo "<center>";
execute_sql("UPDATE {$CFG->prefix}user SET timezone = '$zone'");
$db->debug = false;
echo "</center>";
$USER->timezone = $zone;
}
require_once($CFG->dirroot.'/calendar/lib.php');
$timezones = get_list_of_timezones();
2003-11-22 09:00:15 +00:00
2004-10-04 13:50:37 +00:00
echo '<center><form action="timezone.php" method="get">';
2003-11-22 09:00:15 +00:00
echo "$strusers ($strall): ";
choose_from_menu ($timezones, "zone", 99, get_string("serverlocaltime"), "", "99");
echo "<input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\" />";
echo "<input type=\"submit\" value=\"$strsavechanges\" />";
2004-10-04 13:50:37 +00:00
echo "</form></center>";
2003-11-22 09:00:15 +00:00
print_footer();
?>