Home
last modified time | relevance | path

Searched refs:value (Results 76 – 100 of 118) sorted by last modified time

12345

/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php138 * See {@see \SimplePie\SimplePie::get_feed_tags()} for a description of the return value
156 * Get the base URL value.
929 * @todo If an element exists at a level, but its value is empty, we should fall back to the value from the parent (if it exists).
1168 $value = null;
1171 $value = $this->sanitize($hash['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1178 $hashes_parent[] = $algo.':'.$value;
1182 $value = null;
1185 $value = $this->sanitize($hash['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
1192 $hashes_parent[] = $algo.':'.$value;
[all...]
H A DLocator.php326 foreach ($array as $key => $value) {
330 if (in_array(strtolower(strrchr($value, '.')), ['.rss', '.rdf', '.atom', '.xml'])) {
336 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
349 foreach ($array as $key => $value) {
353 if (preg_match('/(feed|rss|rdf|atom|xml)/i', $value)) {
358 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen, $this->curl_options]);
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingSavedir.php15 $value = is_null($this->local) ? $this->default : $this->local;
16 if ($value == $input) return false;
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 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;
/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/vendor/geshi/geshi/
H A DCHANGELOG881 not set and language is set to wierd value (Maksymilian Arciemowicz)
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php111 $value = $input[$key] ?? null;
112 if ($obj->update($value)) {
/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/inc/
H A Dmedia.php181 // get current value
185 $value = tpl_img_getTag($tags, '', $src);
186 $value = cleanText($value);
200 )->id($p['id'])->addClass($p['class'])->val($value);
203 ->val(formText($value))
915 * @param array $values allowed values, where default value has index key 'default'
916 * @return string the parameter value
1210 * @param string $alt alternative value
1246 $value
[all...]
H A Dfetch.functions.php111 * There is no additional checking, just the encoding and setting the key=value for usage in headers
115 * @param string $value value of the field to be set in the header() call
116 * @param string $charset used charset for the encoding of value
118 * @return string in the format " name=value" for values WITHOUT special characters
119 * @return string in the format " name*=charset'lang'value" for values WITH special characters
121 function rfc2231_encode($name, $value, $charset = 'utf-8', $lang = 'en')
126 $value
128 if ($value != $internal) {
131 return ' ' . $name . '="' . $value
114 rfc2231_encode($name, $value, $charset = 'utf-8', $lang = 'en') global() argument
[all...]
H A Dform.php125 * Adds a name/value pair as a hidden field.
126 * The value of the field (but not the name) will be passed to
130 * @param string $value Field value. If null, remove a previously added field.
134 public function addHidden($name, $value)
136 if (is_null($value))
138 else $this->_hidden[$name] = $value;
230 * Gets the position of the first element with a matching attribute value.
233 * @param string $value Attribute value
133 addHidden($name, $value) global() argument
238 findElementByAttribute($name, $value) global() argument
421 form_makeButton($type, $act, $value = '', $attrs = array()) global() argument
450 form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
476 form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
500 form_makeTextField($name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
573 form_makeCheckboxField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
598 form_makeRadioField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
[all...]
H A Dfulltext.php355 * @param array $results search results in the form pageid => value
385 * adapted argument order and return value.
620 foreach ($args[0] as $key => $value) {
621 $result[$key] = $value;
880 // build return value
H A Dhtml.php195 * @param string[] $params key-value pairs added as hidden inputs
227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
969 $out .= ' <param name="movie" value="' . hsc($swf) . '" />' . NL;
974 $out .= ' <param name="' . hsc($key) . '" value="' . hsc($val) . '" />' . NL;
979 $out .= ' <param name="FlashVars" value="' . buildURLparams($flashvars) . '" />' . NL;
1051 $value = filesize_h(abs($sizechange));
1054 $value = '+' . $value;
1057 $value = '-' . $value;
[all...]
H A Dindexer.php
/dokuwiki/inc/parser/
H A Dhandler.php96 * @param mixed $value
98 public function setStatus($status, $value)
100 $this->status[$status] = $value;
173 * $options is parsed for key value pairs separated by commas.
174 * A value might also be missing in which case the value will simple
178 * @param string $options space separated list of key-value pairs,
180 * @return array|null Array of key-value pairs $array['key'] = 'value';
194 $value
92 setStatus($status, $value) global() argument
[all...]
/dokuwiki/lib/exe/
H A Dcss.php269 * @param array $replacements array(placeholder => value)
277 // and build a list of variable: value; pairs
279 foreach ((array)$replacements as $key => $value) {
282 $less .= "$lkey: $value;\n";
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md51 Keeping either width or height at zero will auto calculate the value for you.
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php83 * The value of identifier can be determined by timestamp as far as the file exists,
98 * Return the last revision identifier, date value of the last entry of the changelog
111 * @param string $value changelog line
114 protected function parseAndCacheLogLine($value)
116 $info = static::parseLogLine($value);
475 * when it does not match any revision value recorded in changelog.
581 * As a result, the value of current revision identifier may change each time because:
583 * 2) the value is essentially volatile for deleted but once existed files.
H A DRevisionInfo.php55 * set value of associated "current" key for internal use. Some UI element like diff
59 * @param bool $value true if the revision is current, otherwise false
62 public function isCurrent($value = null)
64 return (bool) $this->val('current', $value);
68 * Return or set a value of associated key of revision information
72 * @param mixed $value
75 public function val($key, $value = null)
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[$key] = $value;
89 * Set extra key-value t
60 isCurrent($value = null) global() argument
73 val($key, $value = null) global() argument
[all...]
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php78 public function __set($name, $value)
83 $this->$name = $value;
93 $this->$name = $value;
113 // defined by the current class, for some value of "current" that differs slightly
79 __set($name, $value) global() argument
/dokuwiki/inc/Extension/
H A DPluginController.php144 * @deprecated in favor of the more sensible isEnabled where the return value matches the enabled state
266 foreach ($local_plugins as $plugin => $value) {
267 $out .= "\$plugins['$plugin'] = $value;\n";
389 * Returns inverse boolean value of the input
392 * @return bool inversed boolean value of input

12345