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