ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Link.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
28class Link extends Tag
29{
30 public function __construct(
31 string $property_name,
32 protected URI $uri,
33 ) {
34 parent::__construct($property_name);
35 }
36
37 protected function getValue(): string
38 {
39 return (string) $this->uri;
40 }
41}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc