1 | <?php |
||
7 | class Input extends Element |
||
8 | { |
||
9 | protected $defaultValue = ''; |
||
10 | |||
11 | protected $maxLength; |
||
12 | protected $minLength = 0; |
||
13 | |||
14 | public function getMaxLength() |
||
22 | |||
23 | protected function getModelFieldLength() |
||
27 | |||
28 | protected function getModelColumn() |
||
34 | |||
35 | public function setMaxLength($value) |
||
41 | |||
42 | public function getMinLength() |
||
46 | |||
47 | public function setMinLength($value) |
||
53 | |||
54 | public function toArray() |
||
63 | } |
||
64 |