ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Textarea.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2017 Jesús López <lopez@leifos.com> Extended GPL, see docs/LICENSE */
4 
6 
8 
12 interface Textarea extends Input, JavaScriptBindable
13 {
14 
19  public function withMaxLimit($max_limit);
20 
25  public function getMaxLimit();
26 
31  public function withMinLimit($min_limit);
32 
37  public function getMinLimit();
38 
43  public function isLimited();
44 }
getMaxLimit()
get maximum limit of characters
This describes commonalities between all inputs.
Definition: Input.php:30
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
getMinLimit()
get minimum limit of characters
isLimited()
bool if textarea has max or min number of character limit.
withMaxLimit($max_limit)
set maximum number of characters
This describes Textarea inputs.
Definition: Textarea.php:12
withMinLimit($min_limit)
set minimum number of characters