]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/lib/Sabre/DAV/IExtendedCollection.php
Update strings
[friendica-addons.git] / dav / SabreDAV / lib / Sabre / DAV / IExtendedCollection.php
1 <?php
2
3 /**
4  * The IExtendedCollection interface.
5  *
6  * This interface can be used to create special-type of collection-resources
7  * as defined by RFC 5689.
8  *
9  * @package Sabre
10  * @subpackage DAV
11  * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
12  * @author Evert Pot (http://www.rooftopsolutions.nl/)
13  * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
14  */
15 interface Sabre_DAV_IExtendedCollection extends Sabre_DAV_ICollection {
16
17     /**
18      * Creates a new collection
19      *
20      * @param string $name
21      * @param array $resourceType
22      * @param array $properties
23      * @return void
24      */
25     function createExtendedCollection($name, array $resourceType, array $properties);
26
27 }
28