ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Textarea.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
28interface 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}
This describes inputs that can be used in forms.
Definition: FormInput.php:33
This describes Textarea inputs.
Definition: Textarea.php:29
isLimited()
bool if textarea has max or min number of character limit.
withMinLimit(int $min_limit)
set minimum number of characters
Definition: Textarea.php:82
withoutStripTags()
Disable removing tags on user input.
getMinLimit()
get minimum limit of characters
getMaxLimit()
get maximum limit of characters
withMaxLimit(int $max_limit)
set maximum number of characters
Definition: Textarea.php:58
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21