ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
LocalHref.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\DAV\Xml\Property;
4 
5 use Sabre\HTTP;
6 
25 class LocalHref extends Href {
26 
37  function __construct($hrefs) {
38 
39  parent::__construct(array_map(
40  function($href) {
42  },
43  (array)$hrefs
44  ));
45 
46  }
47 
48 }
__construct($hrefs)
Constructor.
Definition: LocalHref.php:37
encodePath($path)
Encodes the path of a url.
Definition: functions.php:386
LocalHref property.
Definition: LocalHref.php:25
Href property.
Definition: Href.php:26