| 1 | <?php |
||
| 17 | class CheckboxElement extends RadioElement |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Returns the element type. |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getType() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Sets element value. |
||
| 31 | * |
||
| 32 | * @param mixed $value |
||
| 33 | * @return RadioElement |
||
| 34 | */ |
||
| 35 | public function setValue($value) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Returns element value. |
||
| 48 | * |
||
| 49 | * @return mixed |
||
| 50 | */ |
||
| 51 | public function getValue() |
||
| 59 | } |
||
| 60 |