diff options
Diffstat (limited to '3rdparty/Sabre/DAV/Property/IHref.php')
-rwxr-xr-x | 3rdparty/Sabre/DAV/Property/IHref.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3rdparty/Sabre/DAV/Property/IHref.php b/3rdparty/Sabre/DAV/Property/IHref.php new file mode 100755 index 00000000000..5c0409064cb --- /dev/null +++ b/3rdparty/Sabre/DAV/Property/IHref.php @@ -0,0 +1,25 @@ +<?php + +/** + * IHref interface + * + * Any property implementing this interface can expose a related url. + * This is used by certain subsystems to aquire more information about for example + * the owner of a file + * + * @package Sabre + * @subpackage DAV + * @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_DAV_Property_IHref { + + /** + * getHref + * + * @return string + */ + function getHref(); + +} |