Home
last modified time | relevance | path

Searched refs:input (Results 26 – 50 of 56) sorted by last modified time

123

/dokuwiki/lib/tpl/dokuwiki/css/
H A D_fileuploader.css72 .qq-uploader li input,
105 .qq-overwrite-check input {
H A D_media_fullscreen.css423 #mediamanager__page form.meta input {
459 #mediamanager__page form.changes ul li div.li input {
H A D_media_popup.css67 #media__opts input {
70 [dir=rtl] #media__opts input {
205 #dw__mediasearch input.edit {
H A D_search.less28 input[name="q"] {
H A Ddesign.less140 input {
158 input {
H A Dmobile.less240 #dokuwiki__sitetools form.search input {
263 /* force same height on search input and tools select */
264 #dokuwiki__sitetools form.search input,
281 #config__manager td .input,
283 .dokuwiki input.edit,
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php3642 _array_repeat($input, $multiplier) global() argument
/dokuwiki/lib/plugins/styling/
H A Dstyle.less6 [dir=rtl] & table input {
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt67 // The input string, if input is not UTF-8 or UCS-4, it must be converted before
68 $input = utf8_encode('nörgler.com');
70 $output = $IDN->encode($input);
82 // The input string
83 $input = 'andre@xn--brse-5qa.xn--knrz-1ra.info';
85 $output = $IDN->decode($input);
91 3. The input is read from a UCS-4 coded file and encoded line by line. By
92 appending the optional second parameter we tell enode() about the input
99 // Iterate through the input fil
[all...]
/dokuwiki/lib/scripts/
H A Dfileuploader.js310 onChange: function(input){ argument
311 self._onInputChange(input);
372 _onInputChange: function(input){
374 this._uploadFileList(input.files);
376 if (this._validateFile(input)){
377 this._uploadFile(input);
406 // it is a file input
407 // get input value and remove path to normalize
758 // if set to true adds multiple attribute to file input
760 // name attribute of file input
762 onChange(input) global() argument
[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/core/Setting/
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 DSettingUndefined.php39 $input = $plugin->getLang($this->errorMessage);
41 return [$label, $input];
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 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 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 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 DSettingNumeric.php18 public function update($input)
21 $valid = parent::update($input);
29 $this->input = $input;
17 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 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;
/dokuwiki/vendor/geshi/geshi/
H A DREADME.md10 input the source code you wish to highlight with the language you
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php103 * @param array $input as posted
106 public function updateSettings($input)
111 $value = $input[$key] ?? null;
101 updateSettings($input) global() argument
/dokuwiki/inc/
H A Dmedia.php316 $input = fopen("php://input", "r");
320 $realSize = stream_copy_to_stream($input, $target);
322 fclose($input);
/dokuwiki/inc/Ui/
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');

123