Lines Matching refs:calendarId

163      * @param string $calendarId
167 function updateCalendar($calendarId, \Sabre\DAV\PropPatch $propPatch) argument
169 …\dokuwiki\Logger::debug('DAVCAL', 'updateCalendar for calendarId '.$calendarId, __FILE__, __LINE__…
172 $propPatch->handle($supportedProperties, function($mutations) use ($calendarId)
181 $this->hlp->updateCalendarName($calendarId, $propertyValue);
185 $this->hlp->updateCalendarDescription($calendarId, $propertyValue);
189 $this->hlp->updateCalendarTimezone($calendarId, $propertyValue);
205 * @param string $calendarId
208 function deleteCalendar($calendarId) argument
242 * @param string $calendarId
245 function getCalendarObjects($calendarId) argument
247 …\dokuwiki\Logger::debug('DAVCAL', 'getCalendarObjects for calendarId '.$calendarId, __FILE__, __LI…
248 $arr = $this->hlp->getCalendarObjects($calendarId);
279 * @param string $calendarId
283 function getCalendarObject($calendarId, $objectUri) argument
285 …\dokuwiki\Logger::debug('DAVCAL', 'getCalendarObject for calendarId '.$calendarId.' and objectUri …
286 $row = $this->hlp->getCalendarObjectByUri($calendarId, $objectUri);
312 * @param mixed $calendarId
316 function getMultipleCalendarObjects($calendarId, array $uris) argument
318 …\dokuwiki\Logger::debug('DAVCAL', 'getMultipleCalendarObjects for calendarId '.$calendarId, __FILE…
320 $arr = $this->hlp->getMultipleCalendarObjectsByUri($calendarId, $uris);
357 * @param mixed $calendarId
362 function createCalendarObject($calendarId, $objectUri, $calendarData) argument
364 …\dokuwiki\Logger::debug('DAVCAL', 'createCalendarObject for calendarId '.$calendarId.' and objectU…
366 $etag = $this->hlp->addCalendarEntryToCalendarByICS($calendarId, $objectUri, $calendarData);
385 * @param mixed $calendarId
390 function updateCalendarObject($calendarId, $objectUri, $calendarData) argument
392 …\dokuwiki\Logger::debug('DAVCAL', 'updateCalendarObject for calendarId '.$calendarId.' and objectU…
394 … $etag = $this->hlp->editCalendarEntryToCalendarByICS($calendarId, $objectUri, $calendarData);
407 * @param string $calendarId
411 function deleteCalendarObject($calendarId, $objectUri) argument
413 …\dokuwiki\Logger::debug('DAVCAL', 'deleteCalendarObject for calendarId '.$calendarId.' and objectU…
414 $this->hlp->deleteCalendarEntryForCalendarByUri($calendarId, $objectUri);
466 * @param string $calendarId
470 function calendarQuery($calendarId, array $filters) argument
472 …\dokuwiki\Logger::debug('DAVCAL', 'calendarQuery for calendarId '.$calendarId, __FILE__, __LINE__);
474 $result = $this->hlp->calendarQuery($calendarId, $filters);
562 * @param string $calendarId
568 function getChangesForCalendar($calendarId, $syncToken, $syncLevel, $limit = null) argument
570 …\dokuwiki\Logger::debug('DAVCAL', 'getChangesForCalendar for calendarId '.$calendarId.' and syncTo…
571 $result = $this->hlp->getChangesForCalendar($calendarId, $syncToken, $syncLevel, $limit);