Home
last modified time | relevance | path

Searched refs:caution (Results 1 – 3 of 3) sorted by last modified time

/dokuwiki/lib/plugins/config/
H A Dadmin.php135 $icon = $setting->caution()
136 ? '<img src="' . self::IMGDIR . $setting->caution() . '.png" ' .
137 'alt="' . $setting->caution() . '" title="' . $this->getLang($setting->caution()) . '" />'
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md114 added support for arbitrary additional elements (use with caution)
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php28 protected $caution; // used by any setting to provide an alert along with the setting
312 * Returns caution
314 * @return false|string caution string, otherwise false for invalid caution
316 public function caution()
318 if (empty($this->caution)) return false;
319 if (!in_array($this->caution, Setting::$validCautions)) {
321 'Invalid caution string (' . $this->caution . ') in metadata for setting "' . $this->key . '"'
324 return $this->caution;
27 protected $caution = null; // used by any setting to provide an alert along with the setting global() variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
300 public function caution() { global() function in dokuwiki\\plugin\\config\\core\\Setting\\Setting
[all...]