Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820492
NotificationSupport.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Subscribers
None
NotificationSupport.php
View Options
<?php
namespace
Sabre\CalDAV\Backend
;
use
Sabre\CalDAV\Xml\Notification\NotificationInterface
;
/**
* Adds caldav notification support to a backend.
*
* Note: This feature is experimental, and may change in between different
* SabreDAV versions.
*
* Notifications are defined at:
* http://svn.calendarserver.org/repository/calendarserver/CalendarServer/trunk/doc/Extensions/caldav-notifications.txt
*
* These notifications are basically a list of server-generated notifications
* displayed to the user. Users can dismiss notifications by deleting them.
*
* The primary usecase is to allow for calendar-sharing.
*
* @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
interface
NotificationSupport
extends
BackendInterface
{
/**
* Returns a list of notifications for a given principal url.
*
* @param string $principalUri
* @return NotificationInterface[]
*/
function
getNotificationsForPrincipal
(
$principalUri
);
/**
* This deletes a specific notifcation.
*
* This may be called by a client once it deems a notification handled.
*
* @param string $principalUri
* @param NotificationInterface $notification
* @return void
*/
function
deleteNotification
(
$principalUri
,
NotificationInterface
$notification
);
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 4:09 AM (5 d, 7 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914135
Default Alt Text
NotificationSupport.php (1 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment