Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 56) sorted by relevance

123

/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingImConvert.php11 public function update($input) argument
15 $input = trim($input);
18 if ($value == $input) return false;
20 if ($input && !file_exists($input)) {
22 $this->input = $input;
26 $this->local = $input;
H A DSettingMulticheckbox.php15 public function update($input) argument
20 $input = $input ?: [];
21 $input = $this->array2str($input);
24 if ($value == $input) return false;
26 if ($this->pattern && !preg_match($this->pattern, $input)) {
28 $this->input = $input;
32 $this->local = $input;
140 array2str($input) global() argument
[all...]
H A DSettingNumericopt.php17 public function update($input)
19 if ($input === '') {
20 if ($input == $this->local) return false;
21 $this->local = $input;
25 return parent::update($input);
16 update($input) global() argument
H A DSettingPassword.php13 public function update($input) argument
16 if (!$input) return false;
18 if ($this->pattern && !preg_match($this->pattern, $input)) {
20 $this->input = $input;
24 $this->local = conf_encodeString($input, $this->code);
37 $input = '<input id="config___' . $key . '" name="config[' . $key .
39 return [$label, $input];
H A DSettingArray.php37 * update setting with user provided value $input
40 * @param string $input
43 public function update($input)
45 if (is_null($input)) return false;
48 $input = $this->fromString($input);
51 if ($value == $input) return false;
53 foreach ($input as $item) {
56 $this->input = $input;
41 update($input) global() argument
[all...]
H A DSettingSavedir.php11 public function update($input) argument
16 if ($value == $input) return false;
18 if (!init_path($input)) {
20 $this->input = $input;
24 $this->local = $input;
H A DSettingEmail.php14 public function update($input)
16 if (is_null($input)) return false;
20 if ($value == $input) return false;
21 if ($input === '') {
22 $this->local = $input;
25 $mail = $input;
52 $this->input = $input;
57 $this->local = $input;
13 update($input) global() argument
H A DSettingRegex.php10 protected $delimiter = '/'; // regex delimiter to be used in testing input
11 protected $pregflags = 'ui'; // regex pattern modifiers to be used in testing input
14 public function update($input) argument
19 if (!parent::update($input)) return false;
23 $regex = $this->delimiter . $input . $this->delimiter . $this->pregflags;
27 $this->input = $input;
32 $this->local = $input;
H A DSettingMultichoice.php40 $input = "<div class=\"input\">\n";
41 $input .= '<select class="edit" id="config___' . $key . '" name="config[' . $key . ']"' . $disable . '>' . "\n";
52 $input .= ' <option value="' . $choice . '"' . $selected . ' >' . $option . '</option>' . "\n";
54 $input .= "</select> $nochoice \n";
55 $input .= "</div>\n";
57 return [$label, $input];
61 public function update($input)
63 if (is_null($input)) return false;
67 if ($value == $input) retur
59 update($input) global() argument
[all...]
H A DSettingAuthtype.php25 public function update($input)
32 if (!parent::update($input)) return false; // nothing changed or an error caught by parent
36 $auth_plugin = $plugin_controller->load('auth', $input);
41 msg('Cannot load Auth Plugin "' . $input . '"', -1);
48 msg('Cannot create Auth Plugin "' . $input . '"', -1);
54 if ($conf['authtype'] != $input) {
59 $this->local = $input;
24 update($input) global() argument
H A DSettingOnoff.php43 $input = '<div class="input"><input id="config___' . $key . '" name="config[' . $key .
45 return [$label, $input];
49 public function update($input)
53 $input = ($input) ? 1 : 0;
55 if ($value == $input) return false;
57 $this->local = $input;
47 update($input) global() argument
H A DSetting.php27 protected $input; // only used by those classes which error check
70 * update changed setting with validated user provided value $input
71 * - if changed value fails validation check, save it to $this->input (to allow echoing later)
74 * @param mixed $input the new value argument
77 public function update($input)
79 if (is_null($input)) return false;
81 $input = $this->cleanValue($input);
84 if ($value == $input) return false;
87 if ($this->pattern && !preg_match($this->pattern, $input)) {
26 protected $input = null; // only used by those classes which error check global() variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
[all...]
H A DSettingNumeric.php18 public function update($input)
21 $valid = parent::update($input);
29 $this->input = $input;
17 update($input) global() argument
H A DSettingString.php19 $value = $this->input;
28 $input = '<input id="config___' . $key . '" name="config[' . $key .
30 return [$label, $input];
H A DSettingUndefined.php39 $input = $plugin->getLang($this->errorMessage);
41 return [$label, $input];
/dokuwiki/inc/Ui/
H A DUserRegister.php41 $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
[all...]
H A DUserProfile.php63 $input = $form->addPasswordInput('oldpass', $lang['oldpass'])->attrs($attr)
65 $input->getLabel()->attr('class', 'block');
87 $input = $form->addTextInput('login', $lang['user'])
91 $input->getLabel()->attr('class', 'block');
96 $input = $form->addTextInput('fullname', $lang['fullname'])
100 $input->getLabel()->attr('class', 'block');
105 $input = $form->addTextInput('email', $lang['email'])
109 $input->getLabel()->attr('class', 'block');
114 $input = $form->addPasswordInput('newpass', $lang['newpass'])->attrs($attr)->addClass('edit');
115 $input
[all...]
H A DUserResendPwd.php61 $input = $form->addPasswordInput('pass', $lang['pass'])->attr('size', '50')->addClass('edit');
62 $input->getLabel()->attr('class', 'block');
64 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attr('size', '50')->addClass('edit');
65 $input->getLabel()->attr('class', 'block');
90 $input = $form->addTextInput('login', $lang['user'])->addClass('edit');
91 $input->getLabel()->attr('class', 'block');
H A DLogin.php53 $input = $form->addTextInput('u', $lang['user'])->id('focus__this')->addClass('edit')
55 $input->getLabel()->attr('class', 'block');
58 $input = $form->addPasswordInput('p', $lang['pass'])->addClass('block edit');
59 $input->getLabel()->attr('class', 'block');
/dokuwiki/inc/Form/
H A DCheckableElement.php47 $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 Didna_convert.class.php43 * Unicode input might be given as either UTF-8 string, UCS-4 string or UCS-4
47 * ACE input and output is always expected to be ASCII.
89 var $_api_encoding = 'utf8'; // Default input charset is UTF-8
111 * [encoding - Use either UTF-8, UCS4 as array or UCS4 as string as input ('utf8' for UTF-8,
118 * by silently ignoring errors and returning the original input instead
165 function decode($input, $one_time_encoding = false) argument
180 $input = trim($input);
182 // Negotiate input and try to determine, whether it is a plain string,
184 if (strpos($input, '
561 _nameprep($input) global() argument
665 _hangul_compose($input) global() argument
718 _apply_cannonical_ordering($input) global() argument
751 _combine($input) global() argument
788 _utf8_to_ucs4($input) global() argument
865 _ucs4_to_utf8($input) global() argument
902 _ucs4_to_ucs4_string($input) global() argument
918 _ucs4_string_to_ucs4($input) global() argument
[all...]
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dbasic.less349 input,
384 input,
392 input:active,
393 input:focus,
402 input[type=radio],
403 input[type=checkbox],
404 input[type=image] {
411 input[type=submit],
412 input[type=button],
413 input[typ
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php356 * @param string $input
359 protected function remove_dot_segments($input) argument
362 while (strpos($input, './') !== false || strpos($input, '/.') !== false || $input === '.' || $input === '..') {
363 // A: If the input buffer begins with a prefix of "../" or "./", then remove that prefix from the input buffer; otherwise,
364 if (strpos($input, '../') === 0) {
365 $input
[all...]
/dokuwiki/lib/plugins/config/
H A Dstyle.css45 [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 Dpagetools-build.php22 // load input images
23 $input = glob('pagetools/*.png'); variable
24 sort($input);
25 $cnt = count($input);
27 die("No input images found. This script needs to be called from within the image directory!\n");
45 $IN = imagecreatefrompng($input[$i]);
51 $IN = imagecreatefrompng($input[$i]);

123