Lines Matching refs:conf
16 protected $conf = []; // array to hold plugin settings, best accessed via ->getConf() variable
167 if ($conf['lang'] != 'en') {
168 @include($path . $conf['lang'] . '/lang.php');
170 … if (file_exists($config_file . $this->getPluginName() . '/' . $conf['lang'] . '/lang.php')) {
171 … include($config_file . $this->getPluginName() . '/' . $conf['lang'] . '/lang.php');
193 if (isset($this->conf[$setting])) {
194 return $this->conf[$setting];
205 global $conf;
211 if (isset($conf['plugin'][$plugin][$key])) continue;
212 $conf['plugin'][$plugin][$key] = $value;
216 $this->conf =& $conf['plugin'][$plugin];
229 $conf = [];
235 return $conf;
259 global $conf;
263 if (!$target) $target = $conf['target']['extern'];
264 if ($conf['relnofollow']) $more .= ' rel="nofollow"';