1 | <?php |
||
8 | class Input extends NamedElement |
||
9 | { |
||
10 | protected $maxLength; |
||
11 | protected $minLength = 0; |
||
12 | |||
13 | protected $size = ''; |
||
14 | |||
15 | public function getSize() |
||
19 | |||
20 | public function largeSize() |
||
26 | |||
27 | public function miniSize() |
||
33 | |||
34 | protected function getModelFieldLength() |
||
42 | |||
43 | protected function getModelColumn() |
||
49 | |||
50 | public function getMaxLength() |
||
58 | |||
59 | public function setMaxLength($value) |
||
65 | |||
66 | public function getMinLength() |
||
70 | |||
71 | public function setMinLength($value) |
||
77 | |||
78 | public function toArray() |
||
86 | } |
||
87 |