Lines Matching refs:value
45 foreach ($params as $property => $value) {
47 $this->$property = $value;
83 $value = is_null($this->local) ? $this->default : $this->local;
84 if ($value == $input) return false;
108 * @param mixed $value
111 protected function cleanValue($value) argument
113 return $value;
202 $value = $this->protected;
205 $value = $this->input;
207 $value = is_null($this->local) ? $this->default : $this->local;
211 $value = formText($value);
215 '" name="config[' . $key . ']" class="edit" ' . $disable . '>' . $value . '</textarea>';
258 $value = 'array(' . implode(', ', array_map([$this, 'escape'], $this->local)) . ')';
260 $value = $this->escape($this->local);
263 $out = '$' . $var . "['" . $this->getArrayKey() . "'] = $value;\n";