ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Link.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Data\URI;
24 
28 class 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 }
__construct(Container $dic, ilPlugin $plugin)