Lines Matching defs:values
8 protected $values = [];
21 * Store the given values so they can be used during rendering
25 * @param string[] $values the values to set
26 * @return string[] the values that have been set (options exist)
29 public function storeValues($values)
31 $this->values = [];
32 foreach ($values as $value) {
34 $this->values[] = $value;
38 return $this->values;
111 $selected = in_array((string)$key, $this->values) ? ' selected="selected"' : '';