Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
dictionary.php
1<?php
2
3
5
7{
8 public const RECURRENCE_SYNC_MODE = [
9 'exception' => 0b100,
10 'oldMaster' => 0b011,
11 'newMaster' => 0b010,
12 'deleteInstance' => 0b001,
13 'single' => 0b000,
14 ];
15 public const SYNC_STATUS = [
16 'success' => 'success',
17 'failed' => 'failed',
18 'delete' => 'delete',
19 'create' => 'create',
20 'recreate' => 'recreate',
21 'update' => 'update',
22 'next' => 'next',
23 'parent' => 'parent',
24 'instance' => 'instance',
25 'undefined' => 'undefined',
26 'waiting' => 'waiting',
27 'deleted' => 'deleted',
28 'exdated' => 'exdated',
29 'inactive' => 'inactive',
30 ];
31
32 public const PUSH_STATUS_PROCESS = [
33 'block' => 'B',
34 'unprocessed' => 'U',
35 'unblocked' => 'N',
36 'process' => 'Y',
37 ];
38
39 public const SYNC_SECTION_ACTION = [
40 'create' => 'create',
41 'update' => 'update',
42 'delete' => 'delete',
43 'success' => 'success',
44 ];
45
46 public const SYNC_EVENT_ACTION = [
47 'create' => 'create',
48 'recreate' => 'recreate',
49 'update' => 'update',
50 'delete' => 'delete',
51 'success' => 'success',
52 ];
53
54 public const NEW_SYNC_PROVIDERS_TYPE = [
55 Google\Helper::GOOGLE_ACCOUNT_TYPE_CALDAV,
56 Google\Helper::GOOGLE_ACCOUNT_TYPE_API,
57 Icloud\Helper::ACCOUNT_TYPE,
58 Office365\Helper::ACCOUNT_TYPE
59 ];
60
61 public const FIRST_SYNC_FLAG_NAME = 'IsFirstSynchronization';
62}