Lines Matching defs:input
40 $input = "<div class=\"input\">\n";
41 $input .= '<select class="edit" id="config___' . $key . '" name="config[' . $key . ']"' . $disable . '>' . "\n";
52 $input .= ' <option value="' . $choice . '"' . $selected . ' >' . $option . '</option>' . "\n";
54 $input .= "</select> $nochoice \n";
55 $input .= "</div>\n";
57 return [$label, $input];
61 public function update($input)
63 if (is_null($input)) return false;
67 if ($value == $input) return false;
69 if (!in_array($input, $this->choices)) return false;
71 $this->local = $input;