1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
incomingmanager.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Sync\Icloud;
4
5use Bitrix\Calendar\Sync\Entities\SyncSection;
6use Bitrix\Calendar\Sync\Managers\IncomingEventManagerInterface;
7use Bitrix\Calendar\Sync\Managers\IncomingSectionManagerInterface;
8use Bitrix\Calendar\Sync\Util\Result;
9
11{
16 public function getEvents(SyncSection $syncSection): Result
17 {
18 return new Result();
19 }
20
24 public function getSectionConnection(): Result
25 {
26 return new Result();
27 }
28
32 public function getEtag(): ?string
33 {
34 return null;
35 }
36
40 public function getSyncToken(): ?string
41 {
42 return null;
43 }
44
48 public function getStatus(): ?string
49 {
50 return null;
51 }
52
56 public function getPageToken(): ?string
57 {
58 return null;
59 }
60
64 public function getSections(): Result
65 {
66 return new Result();
67 }
68
72 public function getConnection(): Result
73 {
74 return new Result();
75 }
76}
getEvents(SyncSection $syncSection)
Определения incomingmanager.php:16