ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Text.php
Go to the documentation of this file.
1 <?php
2 
18 declare(strict_types=1);
19 
21 
25 class Text extends Tag
26 {
27  public function __construct(
28  string $property_name,
29  protected string $text,
30  ) {
31  parent::__construct($property_name);
32  }
33 
34  protected function getValue(): string
35  {
36  return $this->text;
37  }
38 }
$text
Definition: xapiexit.php:21
__construct(string $property_name, protected string $text,)
Definition: Text.php:27
__construct(Container $dic, ilPlugin $plugin)