ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Link.php
Go to the documentation of this file.
1 <?php
2 
18 declare(strict_types=1);
19 
21 
22 use ILIAS\Data\URI;
23 
27 class Link extends Tag
28 {
29  public function __construct(
30  string $property_name,
31  protected URI $uri,
32  ) {
33  parent::__construct($property_name);
34  }
35 
36  protected function getValue(): string
37  {
38  return (string) $this->uri;
39  }
40 }
The scope of this class is split ilias-conform URI&#39;s into components.
Definition: URI.php:34
__construct(Container $dic, ilPlugin $plugin)