ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
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 
24 
28 interface 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 }
getMaxLength()
Gets the max length of the text input.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
withoutStripTags()
Disable stripping tags from user input.
withMaxLength(int $max_length)
Defines the Max Length of text that can be entered in the text input.
This describes text inputs.
Definition: Text.php:28
This interface must be implemented by all Inputs that support Filter Containers.
Definition: FilterInput.php:35