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 26 – 50 of 232) sorted by path

12345678910

/dokuwiki/inc/Input/
H A DInput.php42 * Apply the set filter to the given value
118 $value = $this->applyfilter($this->access[$name]);
119 if ($nonempty && empty($value)) return $default;
120 return $value;
127 * @param mixed $value Value to set
129 public function set($name, $value)
131 $this->access[$name] = $value;
138 * and intialized with the given $default value before a reference is returned
141 * @param mixed $default If parameter is not set, initialize with this value
130 set($name, $value) global() argument
[all...]
H A DPost.php22 * @param mixed $value Value to set
24 public function set($name, $value)
26 parent::set($name, $value);
27 $_REQUEST[$name] = $value;
25 set($name, $value) global() argument
/dokuwiki/inc/
H A DJpegMeta.php201 * @param string $value
204 function setField($field, $value) {
207 return $this->setIPTCField(substr($field,5),$value);
209 return $this->setExifField(substr($field,5),$value);
211 return $this->setExifField($field,$value);
414 * @param string $value argument
417 function setExifField($field, $value) {
432 if(strlen($value) < 8 || $value[4] != ':' || $value[
203 setField($field, $value) global() argument
448 setAdobeField($field, $value) global() argument
509 setIPTCField($field, $value) global() argument
2604 _write8BIM(& $data, $pos, $type, $header, & $value) global() argument
2672 _writeIPTCEntry(& $data, $pos, $type, & $value) global() argument
[all...]
H A DMailer.class.php145 * If an empy value is passed, the header is removed
148 * @param string|string[] $value the value of the header
151 public function setHeader($header, $value, $clean = true)
156 $value = preg_replace('/[^a-zA-Z0-9_ \-\.\+\@<>]+/', '', $value);
159 // empty value deletes
160 if (is_array($value)) {
161 $value = array_map('trim', $value);
143 setHeader($header, $value, $clean = true) global() argument
[all...]
H A DPassHash.php145 * If $salt is not null, the value is kept, but the lenght restriction is
433 $value = ord($hash[$i++]);
434 $output .= $itoa64[$value & 0x3f];
436 $value |= ord($hash[$i]) << 8;
437 $output .= $itoa64[($value >> 6) & 0x3f];
441 $value |= ord($hash[$i]) << 16;
442 $output .= $itoa64[($value >> 12) & 0x3f];
445 $output .= $itoa64[($value >> 18) & 0x3f];
H A DSafeFN.class.php39 * - reduce codepoint value for non-printable ASCII characters (0x00 - 0x1f). Space becomes our zero.
40 * - convert reduced value to base36 (0-9a-z)
70 * - increase codepoint value for non-printable ASCII characters (add 0x20)
151 // set initial value to skip any post_indicator
H A DStyleUtils.php33 * @param string $tpl template name: if not passed as argument, the default value from $conf will be used
70 // guaranteed placeholder => value
178 * @param array $replacements with key-value pairs
184 foreach ($replacements as $key => $value) {
188 $value
H A Dauth.php370 * @param bool $secure if security is more important than keeping the old value
H A Dchangelog.php42 * @param array $flags Additional flags in a key value array.
108 * @param array $flags Additional flags in a key value array.
H A Dcommon.php42 * filled up with the $default value. If the input string contains more elements, the last
48 * @param mixed $default The value to use when filling up missing elements
63 * with a NULL value without warning.
149 $ret = '<div class="no"><input type="hidden" name="sectok" value="' . getSecurityToken() . '" /></div>' . "\n";
349 * @param array $params array with key-value pairs
374 * @param array $params array with (attribute name-attribute value) pairs
1341 * @param string[] $replace Additional string substitutions, @KEY@ to be replaced by value
1485 * strftime - %f can be used to get the value from datetime_h()
1573 * @param string $value PHP size shorthand
1576 function php_to_byte($value)
1555 php_to_byte($value) global() argument
[all...]
H A Dconfutils.php11 * line prefix used to negate single value config items
447 * @return string the encoded value
H A Ddeprecated.php336 * @return mixed the event results value after all event processing is complete
337 * by default this is the return value of the default action however
558 * - $replacements (array of additional string substitutions, @KEY@ to be replaced by value)
710 * @deprecated since 2021-11-11 use \IXR\DataType\Value instead!
712 class IXR_Value extends \IXR\DataType\Value
720 DebugHelper::dbgDeprecatedFunction(IXR\DataType\Value::class);
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
/dokuwiki/inc/Menu/
H A DMobileMenu.php66 $html .= '<input type="hidden" name="id" value="' . $ID . '" />';
67 if ($REV) $html .= '<input type="hidden" name="rev" value="' . $REV . '" />';
69 $html .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
73 $html .= '<option value="">' . $empty . '</option>';
80 $html .= '<option value="' . $params['do'] . '">';
/dokuwiki/inc/Remote/
H A DApiCore.php
/dokuwiki/inc/Search/
H A DIndexer.php26 * An empty value erases the page.
157 * An empty value will erase the key.
158 * The $key parameter can be an array to add multiple keys. $value will
162 * @param mixed $key a key string or array of key=>value pairs
163 * @param mixed $value the value or list of values argument
169 public function addMetaKeys($page, $key, $value = null)
172 $key = [$key => $value];
173 } elseif (!is_null($value)) {
174 // $key is array, but $value i
650 lookupKey($key, & $value, $func = null) global() argument
1086 addIndexKey($idx, $suffix, $value) global() argument
[all...]
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php226 * - $replacements (array of additional string substitutions, @KEY@ to be replaced by value)
H A DSubscriptionSender.php56 * @param array $headers Additional mail headers in the form 'name' => 'value'
80 foreach ($headers as $header => $value) {
81 $mail->setHeader($header, $value);
/dokuwiki/inc/Ui/
H A DAdmin.php169 * We sort alphabetically first, then by sort value
H A DDiff.php68 * @param string|array $prefs a key name or key-value pair(s)
69 * @param mixed $value value used when the first args is string
72 public function preference($prefs = null, $value = null) argument
75 if (is_string($prefs) && isset($value)) {
76 $this->preference[$prefs] = $value;
79 foreach ($prefs as $name => $value) {
80 $this->preference[$name] = $value;
H A DMediaDiff.php289 if ($tag['value'] != $rev2Tags[$key]['value']) {
292 } elseif (!$tag['value'] || !$rev2Tags[$key]['value']) {
304 $value = cleanText($tag['value']);
305 if (!$value) $value = '-';
310 echo dformat($value);
312 echo hsc($value);
[all...]
H A DSubscribe.php91 $value = (array_key_exists($INPUT->post->str('sub_target'), $targets)) ?
94 $data = ($value === $val) ? ['checked' => 'checked'] : [];
101 $value = (array_key_exists($INPUT->post->str('sub_style'), $styles)) ?
104 $data = ($value === $val) ? ['checked' => 'checked'] : [];
/dokuwiki/inc/Utf8/
H A DUnicode.php216 'at index: ' . $k . ', value: ' . $arr[$k],
235 'at index: ' . $k . ', value: ' . $arr[$k],

12345678910