ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Text.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
28interface Text extends FilterInput
29{
33 public function withMaxLength(int $max_length): Text;
34
38 public function getMaxLength(): ?int;
39
43 public function withoutStripTags(): Text;
44}
This interface must be implemented by all Inputs that support Filter Containers.
Definition: FilterInput.php:36
This describes text inputs.
Definition: Text.php:29
withMaxLength(int $max_length)
Defines the Max Length of text that can be entered in the text input.
getMaxLength()
Gets the max length of the text input.
withoutStripTags()
Disable stripping tags from user input.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21