/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingImConvert.php | 11 public function update($input) { argument 14 $input = trim($input); 17 if($value == $input) return false; 19 if($input && !file_exists($input)) { 21 $this->input = $input; 25 $this->local = $input;
|
H A D | SettingMulticheckbox.php | 15 public function update($input) { argument 19 $input = ($input) ? $input : array(); 20 $input = $this->array2str($input); 27 $this->input = $input; 31 $this->local = $input; 45 $value = $this->input; 57 $input = ''; 74 $input .= "</div>\n"; 101 $input .= "</div>\n"; 137 * @param array $input [all …]
|
H A D | SettingNumericopt.php | 16 public function update($input) { argument 17 if($input === '') { 18 if($input == $this->local) return false; 19 $this->local = $input; 23 return parent::update($input);
|
H A D | SettingPassword.php | 13 public function update($input) { argument 15 if(!$input) return false; 17 if($this->pattern && !preg_match($this->pattern, $input)) { 19 $this->input = $input; 23 $this->local = conf_encodeString($input, $this->code); 35 $input = '<input id="config___' . $key . '" name="config[' . $key . 37 return array($label, $input);
|
H A D | SettingArray.php | 38 * @param string $input 41 public function update($input) { argument 42 if(is_null($input)) return false; 45 $input = $this->fromString($input); 48 if($value == $input) return false; 50 foreach($input as $item) { 53 $this->input = $input; 58 $this->local = $input; 71 $value = $this->input; 81 $input = '<input id="config___' . $key . '" name="config[' . $key . [all …]
|
H A D | SettingSavedir.php | 11 public function update($input) { argument 15 if($value == $input) return false; 17 if(!init_path($input)) { 19 $this->input = $input; 23 $this->local = $input;
|
H A D | SettingEmail.php | 13 public function update($input) { argument 14 if(is_null($input)) return false; 18 if($value == $input) return false; 19 if($input === '') { 20 $this->local = $input; 23 $mail = $input; 50 $this->input = $input; 55 $this->local = $input;
|
H A D | SettingRegex.php | 14 public function update($input) { argument 18 if(!parent::update($input)) return false; 22 $regex = $this->delimiter . $input . $this->delimiter . $this->pregflags; 26 $this->input = $input; 31 $this->local = $input;
|
H A D | SettingMultichoice.php | 38 $input = "<div class=\"input\">\n"; 39 …$input .= '<select class="edit" id="config___' . $key . '" name="config[' . $key . ']"' . $disable… 50 … $input .= ' <option value="' . $choice . '"' . $selected . ' >' . $option . '</option>' . "\n"; 52 $input .= "</select> $nochoice \n"; 53 $input .= "</div>\n"; 55 return array($label, $input); 59 public function update($input) { argument 60 if(is_null($input)) return false; 64 if($value == $input) return false; 66 if(!in_array($input, $this->choices)) return false; [all …]
|
H A D | SettingAuthtype.php | 24 public function update($input) { argument 30 if(!parent::update($input)) return false; // nothing changed or an error caught by parent 34 $auth_plugin = $plugin_controller->load('auth', $input); 39 msg('Cannot load Auth Plugin "' . $input . '"', -1); 46 msg('Cannot create Auth Plugin "' . $input . '"', -1); 52 if($conf['authtype'] != $input) { 57 $this->local = $input;
|
H A D | SettingOnoff.php | 41 $input = '<div class="input"><input id="config___' . $key . '" name="config[' . $key . 43 return array($label, $input); 47 public function update($input) { argument 50 $input = ($input) ? 1 : 0; 52 if($value == $input) return false; 54 $this->local = $input;
|
H A D | Setting.php | 71 * @param mixed $input the new value 74 public function update($input) { argument 75 if(is_null($input)) return false; 77 $input = $this->cleanValue($input); 80 if($value == $input) return false; 83 if($this->pattern && !preg_match($this->pattern, $input)) { 85 $this->input = $input; 90 $this->local = $input; 195 $value = $this->input; 205 $input = '<textarea rows="3" cols="40" id="config___' . $key . [all …]
|
H A D | SettingNumeric.php | 17 public function update($input) { argument 19 $valid = parent::update($input); 25 $this->input = $input;
|
H A D | SettingString.php | 18 $value = $this->input; 28 $input = '<input id="config___' . $key . '" name="config[' . $key . 30 return array($label, $input);
|
H A D | SettingUndefined.php | 35 $input = $plugin->getLang($this->errorMessage); 37 return array($label, $input);
|
/dokuwiki/inc/Ui/ |
H A D | UserRegister.php | 41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit') 43 $input->getLabel()->attr('class', 'block'); 47 … $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit'); 48 $input->getLabel()->attr('class', 'block'); 50 …$input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($base_attrs)->addClass('edit'… 51 $input->getLabel()->attr('class', 'block'); 55 … $input = $form->addTextInput('fullname', $lang['fullname'])->attrs($base_attrs)->addClass('edit') 57 $input->getLabel()->attr('class', 'block'); 60 $input = $form->addTextInput('email', $lang['email'])->attrs($email_attrs)->addClass('edit') 62 $input->getLabel()->attr('class', 'block');
|
H A D | UserProfile.php | 46 $input = $form->addTextInput('login', $lang['user'])->attrs($attr)->addClass('edit') 48 $input->getLabel()->attr('class', 'block'); 53 $input = $form->addTextInput('fullname', $lang['fullname'])->attrs($attr)->addClass('edit') 55 $input->getLabel()->attr('class', 'block'); 60 $input = $form->addTextInput('email', $lang['email'])->attrs($attr)->addClass('edit') 62 $input->getLabel()->attr('class', 'block'); 68 $input->getLabel()->attr('class', 'block'); 72 $input->getLabel()->attr('class', 'block'); 80 $input->getLabel()->attr('class', 'block'); 110 $input = $form->addPasswordInput('oldppass', $lang['oldpass'])->attrs($attr) [all …]
|
H A D | UserResendPwd.php | 60 … $input = $form->addPasswordInput('pass', $lang['pass'])->attr('size', '50')->addClass('edit'); 61 $input->getLabel()->attr('class', 'block'); 63 …$input = $form->addPasswordInput('passchk', $lang['passchk'])->attr('size', '50')->addClass('edit'… 64 $input->getLabel()->attr('class', 'block'); 88 $input = $form->addTextInput('login', $lang['user'])->addClass('edit'); 89 $input->getLabel()->attr('class', 'block');
|
H A D | Login.php | 51 $input = $form->addTextInput('u', $lang['user'])->id('focus__this')->addClass('edit') 53 $input->getLabel()->attr('class', 'block'); 56 $input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit'); 57 $input->getLabel()->attr('class', 'block');
|
/dokuwiki/inc/Form/ |
H A D | CheckableElement.php | 47 $input = $INPUT->arr($name); 48 if (isset($input[$key])) { 52 if (is_array($input[$key])) { 53 $input = $input[$key]; 56 foreach ($input as $value) {
|
/dokuwiki/vendor/simplepie/simplepie/idn/ |
H A D | idna_convert.class.php | 180 $input = trim($input); 190 list ($email_pref, $input) = explode('@', $input, 2); 561 function _nameprep($input) argument 570 foreach ($input as $v) { 670 $last = (int) $input[0]; 721 $size = count($input); 732 $input[$j] = intval($input[$j-1]); 742 return $input; 751 function _combine($input) argument 869 foreach ($input as $v) { [all …]
|
/dokuwiki/lib/tpl/dokuwiki/css/ |
H A D | basic.less | 349 input, 384 input, 392 input:active, 393 input:focus, 402 input[type=radio], 404 input[type=image] { 411 input[type=submit], 413 input[type=reset], 414 input.button, 459 input[disabled], [all …]
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | IRI.php | 356 * @param string $input 362 …while (strpos($input, './') !== false || strpos($input, '/.') !== false || $input === '.' || $inpu… 365 $input = substr($input, 3); 367 $input = substr($input, 2); 371 $input = substr($input, 2); 373 $input = '/'; 377 $input = substr($input, 3); 384 elseif ($input === '.' || $input === '..') { 385 $input = ''; 390 $input = substr_replace($input, '', 0, $pos); [all …]
|
/dokuwiki/lib/plugins/config/ |
H A D | style.css | 45 [dir=rtl] #config__manager td.value input.checkbox { 95 #config__manager td input.edit { 98 #config__manager td .input { 111 #config__manager tr .input, 112 #config__manager tr input, 119 #config__manager tr.default .input, 120 #config__manager tr.default input, 128 #config__manager tr.protected .input, 129 #config__manager tr.protected input,
|
/dokuwiki/lib/tpl/dokuwiki/images/ |
H A D | pagetools-build.php | 23 $input = glob('pagetools/*.png'); variable 24 sort($input); 25 $cnt = count($input); 45 $IN = imagecreatefrompng($input[$i]); 51 $IN = imagecreatefrompng($input[$i]);
|