Lines Matching defs:key
246 * @param string $key The configuration key to retreive.
247 * @param mixed $default If key doesn't exist, return this value.
250 public function getConf(string $key, $default = false)
252 $value = tpl_getConf($key, $default);
367 if (in_array($key, $row['keys']) === true) {
385 if (array_key_exists($key, $row['default']) === true) {
386 return $row['default'][$key];
1182 $key = strtolower($matches[1]); // Extract the key (a-zA-Z part)
1184 if (isset($options[$key])) {
1201 $key = strtolower($matches[1]);
1202 return isset($options[$key]) ? $options[$key] : '';