Lines Matching defs:val

50         foreach ($lang as $key => $val) {
51 $lang[PhpString::strtolower($key)] = $val;
165 * @param string $val
170 public function addPrePostFixes($type, $val, $pre = '', $post = '')
180 $val = $pre . $val . $post;
181 $val = $this->replacePlaceholders($val);
182 return $val;
241 foreach ($vals as $val) {
242 $val = trim($val);
243 if ($val == '') continue;
251 $val = $this->addPrePostFixes($column['type'], $val);
252 $val = $this->ensureAbsoluteId($val);
253 $outs[] = $R->internallink($val, null, null, true);
256 [$id, $title] = array_pad(explode('|', $val, 2), 2, null);
262 [$id, $title] = array_pad(explode('|', $val, 2), 2, null);
280 $val = ':' . $column['key'] . ":$val";
282 $outs[] = $R->internallink($val, null, null, true);
285 [$id, $title] = array_pad(explode(' ', $val, 2), 2, null);
299 $val = $this->addPrePostFixes($column['type'], $val);
300 $outs[] = $this->external_link($val, false, 'urlextern');
311 . wl(str_replace('/', ':', cleanID($target)), $this->getTagUrlparam($column, $val))
312 . '" title="' . sprintf($this->getLang('tagfilter'), hsc($val))
313 . '" class="wikilink1">' . hsc($val) . '</a>';
316 $outs[] = dformat($val);
321 [$ID, $data] = explode('|', $val, 2);
344 $val = $this->addPrePostFixes($column['type'], $val);
352 [$mediaid, $title] = array_pad(explode('|', $val, 2), 2, null);
359 if (media_isexternal($val)) {
388 $outs[] = hsc($val);
490 $val = trim($matches[3]);
497 $val = '*' . $val . '*';
500 $val = str_replace('*', '%', $val);
508 $val = $this->cleanData($val, $column['type']);
514 $val = explode(',', $val);
515 $val = array_map('trim', $val);
516 $val = array_map([$sqlite->getPdo(), 'quote'], $val);
517 $val = implode(",", $val);
519 $val = $sqlite->getPdo()->quote($val);
524 'value' => $val,
627 foreach ((array)$array as $key => $val) {
628 $urlarray[$name . '[' . $key . ']'] = $val;
655 foreach ($cur_params as $key => $val) {
656 $flat_param[] = $key . $val;