Lines Matching defs:protected
13 protected $key = '';
16 protected $default;
18 protected $local;
19 /** @var mixed the protected value of this setting */
20 protected $protected;
23 protected static $validCautions = ['warning', 'danger', 'security'];
25 protected $pattern = '';
26 protected $error = false; // only used by those classes which error check
27 protected $input; // only used by those classes which error check
28 protected $caution; // used by any setting to provide an alert along with the setting
60 * @param mixed $protected protected setting value
62 public function initialize($default = null, $local = null, $protected = null)
66 $this->protected = $this->cleanValue($protected);
111 protected function cleanValue($value)
202 $value = $this->protected;
239 protected function escape($string)
282 * Is setting protected
288 return !is_null($this->protected);