]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/lib/Sabre/DAV/Property/IHref.php
privacy_image_cache: checking if the cached file really is an image
[friendica-addons.git] / dav / SabreDAV / lib / Sabre / DAV / Property / IHref.php
1 <?php
2
3 /**
4  * IHref interface
5  *
6  * Any property implementing this interface can expose a related url.
7  * This is used by certain subsystems to aquire more information about for example
8  * the owner of a file
9  *
10  * @package Sabre
11  * @subpackage DAV
12  * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
13  * @author Evert Pot (http://www.rooftopsolutions.nl/)
14  * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
15  */
16 interface Sabre_DAV_Property_IHref {
17
18     /**
19      * getHref
20      *
21      * @return string
22      */
23     function getHref();
24
25 }