ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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