ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Textarea.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
28 interface Textarea extends FormInput
29 {
33  public function withMaxLimit(int $max_limit): Textarea;
34 
39  public function getMaxLimit();
40 
44  public function withMinLimit(int $min_limit): Textarea;
45 
50  public function getMinLimit();
51 
55  public function isLimited(): bool;
56 
60  public function withoutStripTags(): Textarea;
61 }
getMaxLimit()
get maximum limit of characters
withMaxLimit(int $max_limit)
set maximum number of characters
Definition: Textarea.php:58
getMinLimit()
get minimum limit of characters
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
withMinLimit(int $min_limit)
set minimum number of characters
Definition: Textarea.php:82
isLimited()
bool if textarea has max or min number of character limit.
withoutStripTags()
Disable removing tags on user input.
This describes Textarea inputs.
Definition: Textarea.php:28
This describes inputs that can be used in forms.
Definition: FormInput.php:32