ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
LocalHref.php
Go to the documentation of this file.
1<?php
2
4
5use Sabre\HTTP;
6
25class 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}
An exception for terminatinating execution or to throw for unit testing.
Href property.
Definition: Href.php:26
__construct($hrefs)
Constructor.
Definition: LocalHref.php:37
encodePath($path)
Encodes the path of a url.
Definition: functions.php:386