]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/lib/Sabre/DAV/PropertyInterface.php
Merge pull request #73 from CatoTH/master
[friendica-addons.git] / dav / SabreDAV / lib / Sabre / DAV / PropertyInterface.php
1 <?php
2
3 /**
4  * PropertyInterface
5  *
6  * Implement this interface to create new complex properties
7  *
8  * @package Sabre
9  * @subpackage DAV
10  * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
11  * @author Evert Pot (http://www.rooftopsolutions.nl/)
12  * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
13  */
14 interface Sabre_DAV_PropertyInterface {
15
16     public function serialize(Sabre_DAV_Server $server, DOMElement $prop);
17
18     static function unserialize(DOMElement $prop); 
19
20 }
21