Lines Matching refs:local
18 protected $local; variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
59 * @param mixed $local local setting value
62 public function initialize($default = null, $local = null, $protected = null) argument
65 $this->local = $this->cleanValue($local);
83 $value = is_null($this->local) ? $this->default : $this->local;
94 $this->local = $input;
207 $value = is_null($this->local) ? $this->default : $this->local;
228 if ($this->local === null) return false;
229 if ($this->default == $this->local) return false;
257 if (is_array($this->local)) {
258 $value = 'array(' . implode(', ', array_map([$this, 'escape'], $this->local)) . ')';
260 $value = $this->escape($this->local);
298 return !$this->isProtected() && is_null($this->local);