Lines Matching defs:input
27 protected $input; // only used by those classes which error check
70 * update changed setting with validated user provided value $input
71 * - if changed value fails validation check, save it to $this->input (to allow echoing later)
74 * @param mixed $input the new value
77 public function update($input)
79 if (is_null($input)) return false;
81 $input = $this->cleanValue($input);
84 if ($value == $input) return false;
87 if ($this->pattern && !preg_match($this->pattern, $input)) {
89 $this->input = $input;
94 $this->local = $input;
191 * Build html for label and input of setting
205 $value = $this->input;
214 $input = '<textarea rows="3" cols="40" id="config___' . $key .
216 return [$label, $input];