forked from friendica/friendica-addons
26 lines
591 B
PHP
26 lines
591 B
PHP
<?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();
|
|
|
|
}
|