ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Text.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 class Text extends Tag
27 {
28  public function __construct(
29  string $property_name,
30  protected string $text,
31  ) {
32  parent::__construct($property_name);
33  }
34 
35  protected function getValue(): string
36  {
37  return $this->text;
38  }
39 }
__construct(string $property_name, protected string $text,)
Definition: Text.php:28
__construct(Container $dic, ilPlugin $plugin)