[ Index ] |
PHP Cross Reference of vtigercrm-6.1.0 |
[Summary view] [Print] [Text view]
1 <?php 2 /********************************************************************************* 3 * The contents of this file are subject to the SugarCRM Public License Version 1.1.2 4 * ("License"); You may not use this file except in compliance with the 5 * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL 6 * Software distributed under the License is distributed on an "AS IS" basis, 7 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for 8 * the specific language governing rights and limitations under the License. 9 * The Original Code is: SugarCRM Open Source 10 * The Initial Developer of the Original Code is SugarCRM, Inc. 11 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.; 12 * All Rights Reserved. 13 * Contributor(s): ______________________________________. 14 ********************************************************************************/ 15 class UserTimeZones{ 16 function userTimeZones(){ 17 $arrayOfSupportedTimeZones = array( 18 'Pacific/Midway', 19 'Pacific/Samoa', 20 'Pacific/Honolulu', 21 'America/Anchorage', 22 'America/Los_Angeles', 23 'America/Tijuana', 24 'America/Denver', 25 'America/Chihuahua', 26 'America/Mazatlan', 27 'America/Phoenix', 28 'America/Regina', 29 'America/Tegucigalpa', 30 'America/Chicago', 31 'America/Mexico_City', 32 'America/Monterrey', 33 'America/New_York', 34 'America/Bogota', 35 'America/Lima', 36 'America/Rio_Branco', 37 'America/Indiana/Indianapolis', 38 'America/Caracas', 39 'America/Halifax', 40 'America/Manaus', 41 'America/Santiago', 42 'America/La_Paz', 43 'America/Cuiaba', 44 'America/Asuncion', 45 'America/St_Johns', 46 'America/Argentina/Buenos_Aires', 47 'America/Sao_Paulo', 48 'America/Godthab', 49 'America/Montevideo', 50 'Atlantic/South_Georgia', 51 'Atlantic/Azores', 52 'Atlantic/Cape_Verde', 53 'Europe/London', 54 'UTC', 55 'Africa/Monrovia', 56 'Africa/Casablanca', 57 'Europe/Belgrade', 58 'Europe/Sarajevo', 59 'Europe/Brussels', 60 'Africa/Algiers', 61 'Europe/Amsterdam', 62 'Europe/Minsk', 63 'Africa/Cairo', 64 'Europe/Helsinki', 65 'Europe/Athens', 66 'Europe/Istanbul', 67 'Asia/Jerusalem', 68 'Asia/Amman', 69 'Asia/Beirut', 70 'Africa/Windhoek', 71 'Africa/Harare', 72 'Asia/Kuwait', 73 'Asia/Baghdad', 74 'Africa/Nairobi', 75 'Asia/Tehran', 76 'Asia/Tbilisi', 77 'Europe/Moscow', 78 'Asia/Muscat', 79 'Asia/Baku', 80 'Asia/Yerevan', 81 'Asia/Karachi', 82 'Asia/Tashkent', 83 'Asia/Kolkata', 84 'Asia/Colombo', 85 'Asia/Katmandu', 86 'Asia/Dhaka', 87 'Asia/Almaty', 88 'Asia/Yekaterinburg', 89 'Asia/Rangoon', 90 'Asia/Novosibirsk', 91 'Asia/Bangkok', 92 'Asia/Brunei', 93 'Asia/Krasnoyarsk', 94 'Asia/Ulaanbaatar', 95 'Asia/Kuala_Lumpur', 96 'Asia/Taipei', 97 'Australia/Perth', 98 'Asia/Irkutsk', 99 'Asia/Seoul', 100 'Asia/Tokyo', 101 'Australia/Darwin', 102 'Australia/Adelaide', 103 'Australia/Canberra', 104 'Australia/Brisbane', 105 'Australia/Hobart', 106 'Asia/Vladivostok', 107 'Pacific/Guam', 108 'Asia/Yakutsk', 109 'Pacific/Fiji', 110 'Asia/Kamchatka', 111 'Pacific/Auckland', 112 'Asia/Magadan', 113 'Pacific/Tongatapu' 114 ); 115 return $arrayOfSupportedTimeZones; 116 } 117 } 118 119 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:08:37 2014 | Cross-referenced by PHPXref 0.7.1 |