1 | <?php |
||
8 | class FormElementHidden extends FormElement |
||
9 | { |
||
10 | /** |
||
11 | * Constructor |
||
12 | * |
||
13 | * @param string $name of the element. |
||
14 | * @param array $attributes to set to the element. Default is an empty |
||
15 | * array. |
||
16 | */ |
||
17 | public function __construct($name, $attributes = []) |
||
22 | |||
23 | |||
24 | |||
25 | /** |
||
26 | * Get HTML code for a element. |
||
27 | * |
||
28 | * @return string HTML code for the element. |
||
29 | * |
||
30 | * @SuppressWarnings(PHPMD.UnusedLocalVariable) |
||
31 | */ |
||
32 | public function getHTML() |
||
38 | } |
||
39 |