Home
last modified time | relevance | path

Searched refs:choices (Results 1 – 9 of 9) sorted by last modified time

/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingRenderer.php27 $this->choices[] = $plugin;
43 foreach ($this->choices as $choice) {
H A DSettingAuthtype.php18 $this->choices[] = $plugin;
H A DSettingSepchar.php14 for ($i = 0; $i < strlen($str); $i++) $this->choices[] = $str[$i];
H A DSettingCompression.php10 protected $choices = ['0']; // 0 = no compression, always supported variable in dokuwiki\\plugin\\config\\core\\Setting\\SettingCompression
17 if (function_exists('gzopen')) $this->choices[] = 'gz';
18 if (function_exists('bzopen')) $this->choices[] = 'bz2';
H A DSettingDirchoice.php30 $this->choices = $list;
H A DSettingDisableactions.php18 foreach ($this->choices as $choice) {
H A DSettingLicense.php10 protected $choices = ['']; // none choosen variable in dokuwiki\\plugin\\config\\core\\Setting\\SettingLicense
18 $this->choices[] = $key;
H A DSettingMulticheckbox.php10 protected $choices = []; variable in dokuwiki\\plugin\\config\\core\\Setting\\SettingMulticheckbox
58 foreach ($this->choices as $choice) {
H A DSettingMultichoice.php10 protected $choices = [];
27 if (!in_array($value, $this->choices)) {
28 $this->choices[] = $value;
30 // disable if no other choices
31 if (!$this->isProtected() && count($this->choices) <= 1) {
42 foreach ($this->choices as $choice) {
69 if (!in_array($input, $this->choices)) return false;
9 protected $choices = array(); global() variable in dokuwiki\\plugin\\config\\core\\Setting\\SettingMultichoice