diff options
Diffstat (limited to '3rdparty/Sabre/CardDAV/ICard.php')
-rwxr-xr-x | 3rdparty/Sabre/CardDAV/ICard.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3rdparty/Sabre/CardDAV/ICard.php b/3rdparty/Sabre/CardDAV/ICard.php new file mode 100755 index 00000000000..a17299316c1 --- /dev/null +++ b/3rdparty/Sabre/CardDAV/ICard.php @@ -0,0 +1,18 @@ +<?php + +/** + * Card interface + * + * Extend the ICard interface to allow your custom nodes to be picked up as + * 'Cards'. + * + * @package Sabre + * @subpackage CardDAV + * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + */ +interface Sabre_CardDAV_ICard extends Sabre_DAV_IFile { + +} + |