Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/calendar/lib/sync/ |
Upload File : |
<?php namespace Bitrix\Calendar\Sync; class Dictionary { public const RECURRENCE_SYNC_MODE = [ 'exceptionNewSeries' => 0b110, 'exception' => 0b100, 'oldMaster' => 0b011, 'newMaster' => 0b010, 'deleteInstance' => 0b001, 'single' => 0b000, ]; public const SYNC_STATUS = [ 'success' => 'success', 'failed' => 'failed', 'delete' => 'delete', 'create' => 'create', 'recreate' => 'recreate', 'update' => 'update', 'next' => 'next', 'parent' => 'parent', 'instance' => 'instance', 'undefined' => 'undefined', 'waiting' => 'waiting', 'deleted' => 'deleted', 'exdated' => 'exdated', 'inactive' => 'inactive', ]; public const PUSH_STATUS_PROCESS = [ 'block' => 'B', 'unprocessed' => 'U', 'unblocked' => 'N', 'process' => 'Y', ]; public const SYNC_SECTION_ACTION = [ 'create' => 'create', 'update' => 'update', 'delete' => 'delete', 'success' => 'success', ]; public const SYNC_EVENT_ACTION = [ 'create' => 'create', 'recreate' => 'recreate', 'update' => 'update', 'delete' => 'delete', 'success' => 'success', ]; public const NEW_SYNC_PROVIDERS_TYPE = [ Google\Helper::GOOGLE_ACCOUNT_TYPE_CALDAV, Google\Helper::GOOGLE_ACCOUNT_TYPE_API, Icloud\Helper::ACCOUNT_TYPE, Office365\Helper::ACCOUNT_TYPE ]; public const FIRST_SYNC_FLAG_NAME = 'IsFirstSynchronization'; }