Home
last modified time | relevance | path

Searched +full:value -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 76 – 100 of 232) sorted by path

12345678910

/dokuwiki/lib/plugins/authad/
H A Dauth.php577 * @param array $changes array of field/value pairs to be changed
/dokuwiki/lib/plugins/authldap/
H A Dauth.php253 // $key = array($key=>$regexp), only handles the first key-value
320 * @param array $changes array of field/value pairs to be changed (password will be clear text)
465 $value = $placeholders[$match][0];
467 $value = $placeholders[$match];
469 $value = $this->filterEscape($value);
470 $filter = str_replace('%{' . $match . '}', $value, $filter);
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php252 * @param array $changes array of field/value pairs to be changed (password will be clear text)
662 foreach ($arguments as $key => $value) {
663 if (is_array($value)) continue;
664 if (is_object($value)) continue;
668 if (is_int($value)) {
669 $sth->bindValue($key, $value, PDO::PARAM_INT);
671 $sth->bindValue($key, $value);
673 $params[$key] = $value; //remember for debugging
/dokuwiki/lib/plugins/authplain/
H A Dauth.php177 * @param array $changes array of field/value pairs to be changed (password will be clear text)
201 foreach ($changes as $field => $value) {
203 $newuser = $value;
206 if ($field == 'pass') $value = auth_cryptPassword($value);
207 $userinfo[$field] = $value;
/dokuwiki/lib/plugins/config/
H A Dadmin.php95 echo '<div class="no"><input type="hidden" name="id" value="' . $ID . '" /></div>';
133 ? ' class="value error"'
134 : ' class="value"';
190 echo '<input type="hidden" name="do" value="admin" />';
191 echo '<input type="hidden" name="page" value="config" />';
194 echo '<input type="hidden" name="save" value="1" />';
285 * @param string $value
287 public function addLang($key, $value)
290 $this->lang[$key] = $value;
278 addLang($key, $value) global() argument
H A Dstyle.css37 #config__manager fieldset td.value {
45 [dir=rtl] #config__manager td.value input.checkbox {
50 [dir=rtl] #config__manager td.value label {
/dokuwiki/lib/plugins/config/core/
H A DConfigParser.php48 $value = $matches[$i][2];
54 if (preg_match('/^array ?\((.*)\)/', $value, $match)) {
64 $value = $arr;
66 $value = $this->readValue($value);
69 $config[$key] = $value;
76 * Convert php string into value
78 * @param string $value argument
81 protected function readValue($value)
90 if ($value
[all...]
H A DConfiguration.php111 $value = $input[$key] ?? null;
112 if ($obj->update($value)) {
H A DLoader.php215 foreach ($meta as $key => $value) {
216 if ($value[0] == 'fieldset') continue; //plugins only get one fieldset
217 $data[$prefix . $key] = $value;
244 foreach ($conf as $key => $value) {
245 $data[$prefix . $key] = $value;
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php15 /** @var mixed the default value of this setting */
17 /** @var mixed the local value of this setting */
19 /** @var mixed the protected value of this setting */
35 * @see initialize() to set the actual value of the setting
45 foreach ($params as $property => $value) {
47 $this->$property = $value;
57 * @see update() to set a new value
58 * @param mixed $default default setting value
59 * @param mixed $local local setting value
60 * @param mixed $protected protected setting value
107 cleanValue($value) global() argument
[all...]
H A DSettingArray.php37 * update setting with user provided value $input
38 * if value fails error check, save it
50 $value = is_null($this->local) ? $this->default : $this->local;
51 if ($value == $input) return false;
71 $value = $this->protected;
74 $value = $this->input;
76 $value = is_null($this->local) ? $this->default : $this->local;
80 $value = htmlspecialchars($this->fromArray($value));
84 ']" type="text" class="edit" value
[all...]
H A DSettingEmail.php19 $value = is_null($this->local) ? $this->default : $this->local;
20 if ($value == $input) return false;
H A DSettingImConvert.php17 $value = is_null($this->local) ? $this->default : $this->local;
18 if ($value == $input) return false;
H A DSettingMulticheckbox.php23 $value = is_null($this->local) ? $this->default : $this->local;
24 if ($value == $input) return false;
43 $value = $this->protected;
46 $value = $this->input;
48 $value = is_null($this->local) ? $this->default : $this->local;
54 $value = $this->str2array($value);
59 $idx = array_search($choice, $value);
72 '][]" type="checkbox" class="checkbox" value="' . $choice . '" ' . $disable . ' ' . $checked . "/>\n";
76 if ($idx !== false) unset($value[
[all...]
H A DSettingMultichoice.php20 $value = $this->protected;
23 $value = is_null($this->local) ? $this->default : $this->local;
26 // ensure current value is included
27 if (!in_array($value, $this->choices)) {
28 $this->choices[] = $value;
43 $selected = ($value == $choice) ? ' selected="selected"' : '';
52 $input .= ' <option value="' . $choice . '"' . $selected . ' >' . $option . '</option>' . "\n";
66 $value = is_null($this->local) ? $this->default : $this->local;
67 if ($value == $input) return false;
H A DSettingNoDefault.php8 * A do-nothing class used to detect settings with no default value.
H A DSettingOnoff.php14 protected function cleanValue($value) argument
16 if ($value === null) return null;
18 if (is_string($value)) {
19 if (strtolower($value) === 'false') return 0;
20 if (strtolower($value) === 'off') return 0;
21 if (trim($value) === '') return 0;
24 return (int) (bool) $value;
33 $value = $this->protected;
36 $value = is_null($this->local) ? $this->default : $this->local;
40 $checked = ($value)
[all...]
H A DSettingPassword.php38 ']" autocomplete="off" type="password" class="edit" value="" ' . $disable . ' />';
H A DSettingRegex.php17 // let parent do basic checks, value, not changed, etc.
H A DSettingSavedir.php15 $value = is_null($this->local) ? $this->default : $this->local;
16 if ($value == $input) return false;
H A DSettingString.php16 $value = $this->protected;
19 $value = $this->input;
21 $value = is_null($this->local) ? $this->default : $this->local;
25 $value = htmlspecialchars($value);
29 ']" type="text" class="edit" value="' . $value . '" ' . $disable . '/>';
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php9 * $meta[<setting name>] = array(<handler class id>,<param name> => <param value>);
56 * '_caution' - no value (default) or 'warning', 'danger', 'security'. display an alert along with the setting
67 * '_min' - minimum numeric value, optional for 'numeric' and 'numericopt', ignored by others
68 * '_max' - maximum numeric value, optional for 'numeric' and 'numericopt', ignored by others
74 * default value 'always'. 'exists' only shows 'other' input field when the setting contains value(s)
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php865 [$key, $value] = sexplode('=', trim($line, DOKU_LF), 2, '');
867 $value = trim($value);
870 $this->managerData[$key] = $value;
H A Dlist.php77 * @param array $data key-value list of fields and their values to add
82 foreach ($data as $key => $value) {
83 $this->form .= '<input type="hidden" name="' . hsc($key) . '" value="' . hsc($value) . '" />';
H A Drepository.php216 // FIXME make integer from type value

12345678910