ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
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
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
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