[phpMP-CVS] CVS: phpMP/includes constants.php,1.17,1.18
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-02-09 21:19:09
|
Update of /cvsroot/phpmp/phpMP/includes In directory sc8-pr-cvs1:/tmp/cvs-serv8579/includes Modified Files: constants.php Log Message: Added timezones. Index: constants.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/includes/constants.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** constants.php 8 Feb 2003 10:48:22 -0000 1.17 --- constants.php 9 Feb 2003 21:19:06 -0000 1.18 *************** *** 14,16 **** --- 14,50 ---- define("SESS_LOC_URL", 2); //Sessions stored in URL. + // Timezones according to Windows. Probably wrong, but hey.. + define("GMT_MINUS_12", -12); // International Date Line West. + define("GMT_MINUS_11", -11); // Midway Island, Simoa. + define("GMT_MINUS_10", -10); // Hawaii. + define("GMT_MINUS_9", -9); // Alaska. + define("GMT_MINUS_8", -8); // Pacific Time. + define("GMT_MINUS_7", -7); // Arizona, Mountain Time. + define("GMT_MINUS_6", -6); // Central Time. + define("GMT_MINUS_5", -5); // Eastern Time. + define("GMT_MINUS_4", -4); // Atlantic Time. + define("GMT_MINUS_3_30", -3.5); // Newfoundland. + define("GMT_MINUS_3", -3); // Greenland. + define("GMT_MINUS_2", -2); // Mid-Atlantic. + define("GMT_MINUS_1", -1); // Cape Verda Is. + define("GMT", 0); // Greenwich Mean Time. + define("GMT_PLUS_1", 1); // Paris. + define("GMT_PLUS_2", 2); // Jerusalem. + define("GMT_PLUS_3", 3); // Moscow. + define("GMT_PLUS_4", 4); // Abu Dhabi. + define("GMT_PLUS_4_30", 4.5); // Kabul. + define("GMT_PLUS_5", 5); // Karachi. + define("GMT_PLUS_5_30", 5.5); // New Delhi. + define("GMT_PLUS_5_45", 5.75); // Kathmandu. + define("GMT_PLUS_6", 6); // Almaty. + define("GMT_PLUS_6_30", 6.5); // Rangoon. + define("GMT_PLUS_7", 7); // Bangkok. + define("GMT_PLUS_8", 8); // Beijing. + define("GMT_PLUS_9", 9); // Tokyo. + define("GMT_PLUS_19_30", 9.5); // Adelaide. + define("GMT_PLUS_10", 10); // Brisbane. + define("GMT_PLUS_11", 11); // Solomon Is. + define("GMT_PLUS_12", 12); // Auckland. + define("GMT_PLUS_13", 13); // Nuku'alofa. + ?> |