1 <?php
2
3 4 5 6 7
8
9 namespace nk2580\wordsmith\Inputs\Fields;
10
11 use nk2580\wordsmith\Inputs\Input as Input;
12
13 14 15 16 17
18 class HiddenField extends Input {
19
20 public function printField() {
21 $class = $this->getClassString();
22 if (!$this->readonly) {
23 echo "<input type='hidden' name='" . $this->name . '" class="' . $class . '" id="' . $this->name . '" value="'.$this->value.'" />';
24 } else {
25 echo "<input type='hidden' readonly name='" . $this->name . '" class="' . $class . '" id="' . $this->name . '" value="'.$this->value.'" />';
26 }
27 }
28
29 }
30