ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
Textarea.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
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
Describes a Form Input that can contain Mustache variables, which will be made available for users to...
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:83
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:59
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21