1 | <?php |
||
34 | class Calendar extends ExternalCalendar implements IShareable { |
||
35 | |||
36 | /** @var string */ |
||
37 | private $principalUri; |
||
38 | |||
39 | /** @var string */ |
||
40 | private $calendarUri; |
||
41 | |||
42 | /** @var string[] */ |
||
43 | private $children; |
||
44 | /** |
||
45 | * @var \stdClass |
||
46 | */ |
||
47 | private $cardService; |
||
48 | |||
49 | /** |
||
50 | * Calendar constructor. |
||
51 | * |
||
52 | * @param string $principalUri |
||
53 | * @param string $calendarUri |
||
54 | */ |
||
55 | public function __construct(string $principalUri, string $calendarUri, Board $board = null) { |
||
72 | |||
73 | |||
74 | /** |
||
75 | * @inheritDoc |
||
76 | */ |
||
77 | function getOwner() { |
||
80 | |||
81 | /** |
||
82 | * @inheritDoc |
||
83 | */ |
||
84 | function getACL() { |
||
103 | |||
104 | /** |
||
105 | * @inheritDoc |
||
106 | */ |
||
107 | function setACL(array $acl) { |
||
110 | |||
111 | /** |
||
112 | * @inheritDoc |
||
113 | */ |
||
114 | function getSupportedPrivilegeSet() { |
||
117 | |||
118 | /** |
||
119 | * @inheritDoc |
||
120 | */ |
||
121 | function calendarQuery(array $filters) { |
||
127 | |||
128 | /** |
||
129 | * @inheritDoc |
||
130 | */ |
||
131 | function createFile($name, $data = null) { |
||
134 | |||
135 | /** |
||
136 | * @inheritDoc |
||
137 | */ |
||
138 | function getChild($name) { |
||
151 | |||
152 | /** |
||
153 | * @inheritDoc |
||
154 | */ |
||
155 | function getChildren() { |
||
168 | |||
169 | /** |
||
170 | * @inheritDoc |
||
171 | */ |
||
172 | function childExists($name) { |
||
180 | |||
181 | /** |
||
182 | * @inheritDoc |
||
183 | */ |
||
184 | function delete() { |
||
187 | |||
188 | /** |
||
189 | * @inheritDoc |
||
190 | */ |
||
191 | function getLastModified() { |
||
194 | |||
195 | /** |
||
196 | * @inheritDoc |
||
197 | */ |
||
198 | function getGroup() { |
||
201 | |||
202 | /** |
||
203 | * @inheritDoc |
||
204 | */ |
||
205 | function propPatch(PropPatch $propPatch) { |
||
208 | |||
209 | /** |
||
210 | * @inheritDoc |
||
211 | */ |
||
212 | function getProperties($properties) { |
||
220 | |||
221 | /** |
||
222 | * @inheritDoc |
||
223 | */ |
||
224 | function updateShares(array $add, array $remove) { |
||
227 | |||
228 | /** |
||
229 | * @inheritDoc |
||
230 | */ |
||
231 | function getShares() { |
||
234 | |||
235 | /** |
||
236 | * @inheritDoc |
||
237 | */ |
||
238 | public function getResourceId() { |
||
241 | } |
||
242 |