H A D | SettingMulticheckbox.php | 12 protected $other = 'always'; variable in dokuwiki\\plugin\\config\\core\\Setting\\SettingMulticheckbox 82 if($this->other != 'never') { 83 $other = join(',', $value); 86 if($this->other != 'exists' || $other) { 99 '][other]" type="text" class="edit" value="' . htmlspecialchars($other) . 143 $other = trim($input['other']); 144 $other = !empty($other) ? explode(',', str_replace(' ', '', $input['other'])) : array(); 147 $array = array_unique(array_merge($input, $other));
|