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
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}
An exception for terminatinating execution or to throw for unit testing.
This describes commonalities between all inputs.
Definition: Input.php:31
This describes Textarea inputs.
Definition: Textarea.php:13
isLimited()
bool if textarea has max or min number of character limit.
withMaxLimit($max_limit)
set maximum number of characters
getMinLimit()
get minimum limit of characters
getMaxLimit()
get maximum limit of characters
withMinLimit($min_limit)
set minimum number of characters
Interface to be extended by components that have the possibility to bind to Javascript.
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.