- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
119 lines
3.7 KiB
PHP
119 lines
3.7 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
* The contents of this file are subject to the SugarCRM Public License Version 1.1.2
|
|
* ("License"); You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
* the specific language governing rights and limitations under the License.
|
|
* The Original Code is: SugarCRM Open Source
|
|
* The Initial Developer of the Original Code is SugarCRM, Inc.
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
********************************************************************************/
|
|
class UserTimeZones{
|
|
function userTimeZones(){
|
|
$arrayOfSupportedTimeZones = array(
|
|
'Pacific/Midway',
|
|
'Pacific/Samoa',
|
|
'Pacific/Honolulu',
|
|
'America/Anchorage',
|
|
'America/Los_Angeles',
|
|
'America/Tijuana',
|
|
'America/Denver',
|
|
'America/Chihuahua',
|
|
'America/Mazatlan',
|
|
'America/Phoenix',
|
|
'America/Regina',
|
|
'America/Tegucigalpa',
|
|
'America/Chicago',
|
|
'America/Mexico_City',
|
|
'America/Monterrey',
|
|
'America/New_York',
|
|
'America/Bogota',
|
|
'America/Lima',
|
|
'America/Rio_Branco',
|
|
'America/Indiana/Indianapolis',
|
|
'America/Caracas',
|
|
'America/Halifax',
|
|
'America/Manaus',
|
|
'America/Santiago',
|
|
'America/La_Paz',
|
|
'America/Cuiaba',
|
|
'America/Asuncion',
|
|
'America/St_Johns',
|
|
'America/Argentina/Buenos_Aires',
|
|
'America/Sao_Paulo',
|
|
'America/Godthab',
|
|
'America/Montevideo',
|
|
'Atlantic/South_Georgia',
|
|
'Atlantic/Azores',
|
|
'Atlantic/Cape_Verde',
|
|
'Europe/London',
|
|
'UTC',
|
|
'Africa/Monrovia',
|
|
'Africa/Casablanca',
|
|
'Europe/Belgrade',
|
|
'Europe/Sarajevo',
|
|
'Europe/Brussels',
|
|
'Africa/Algiers',
|
|
'Europe/Amsterdam',
|
|
'Europe/Minsk',
|
|
'Africa/Cairo',
|
|
'Europe/Helsinki',
|
|
'Europe/Athens',
|
|
'Europe/Istanbul',
|
|
'Asia/Jerusalem',
|
|
'Asia/Amman',
|
|
'Asia/Beirut',
|
|
'Africa/Windhoek',
|
|
'Africa/Harare',
|
|
'Asia/Kuwait',
|
|
'Asia/Baghdad',
|
|
'Africa/Nairobi',
|
|
'Asia/Tehran',
|
|
'Asia/Tbilisi',
|
|
'Europe/Moscow',
|
|
'Asia/Muscat',
|
|
'Asia/Baku',
|
|
'Asia/Yerevan',
|
|
'Asia/Karachi',
|
|
'Asia/Tashkent',
|
|
'Asia/Kolkata',
|
|
'Asia/Colombo',
|
|
'Asia/Katmandu',
|
|
'Asia/Dhaka',
|
|
'Asia/Almaty',
|
|
'Asia/Yekaterinburg',
|
|
'Asia/Rangoon',
|
|
'Asia/Novosibirsk',
|
|
'Asia/Bangkok',
|
|
'Asia/Brunei',
|
|
'Asia/Krasnoyarsk',
|
|
'Asia/Ulaanbaatar',
|
|
'Asia/Kuala_Lumpur',
|
|
'Asia/Taipei',
|
|
'Australia/Perth',
|
|
'Asia/Irkutsk',
|
|
'Asia/Seoul',
|
|
'Asia/Tokyo',
|
|
'Australia/Darwin',
|
|
'Australia/Adelaide',
|
|
'Australia/Canberra',
|
|
'Australia/Brisbane',
|
|
'Australia/Hobart',
|
|
'Asia/Vladivostok',
|
|
'Pacific/Guam',
|
|
'Asia/Yakutsk',
|
|
'Pacific/Fiji',
|
|
'Asia/Kamchatka',
|
|
'Pacific/Auckland',
|
|
'Asia/Magadan',
|
|
'Pacific/Tongatapu'
|
|
);
|
|
return $arrayOfSupportedTimeZones;
|
|
}
|
|
}
|
|
|
|
?>
|