Lines Matching refs:val
17 * @param string $val
21 public function parseSort($val)
23 if (substr($val, 0, 1) == '^') {
24 return [substr($val, 1), false];
26 return [$val, true];
31 * @param $val
35 public function parseFilterLine($logic, $val)
37 $flt = $this->parseFilter($val);
48 * @param string $val
53 protected function parseFilter($val)
62 if (!preg_match('/^(.*?)(' . $comps . ')(.*)$/', $val, $match)) {
63 throw new StructException('Invalid search filter %s', hsc($val));