ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
SharingSupport.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\CalDAV\Backend;
4 
23 interface SharingSupport extends BackendInterface {
24 
32  function updateInvites($calendarId, array $sharees);
33 
49  function getInvites($calendarId);
50 
58  function setPublishStatus($calendarId, $value);
59 
60 }
Adds support for sharing features to a CalDAV server.
Every CalDAV backend must at least implement this interface.
setPublishStatus($calendarId, $value)
Publishes a calendar.
updateInvites($calendarId, array $sharees)
Updates the list of shares.
getInvites($calendarId)
Returns the list of people whom this calendar is shared with.