Home
last modified time | relevance | path

Searched refs:value (Results 51 – 75 of 118) sorted by last modified time

12345

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DDataCache.php66 * Fetches a value from the cache.
74 * @param mixed $default Default value to return if the key does not exist.
76 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
79 * MUST be thrown if the $key string is not a legal value.
88 * public function set(string $key, mixed $value, null|int|\DateInterval $ttl = null): bool;
92 * @param array $value The value of the item to store, must be serializable.
93 * @param null|int $ttl Optional. The TTL value of this item. If no value is sent and
94 * the driver supports TTL then the library may set a default value
102 set_data(string $key, array $value, int $ttl = null) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php94 foreach ($headers as $key => $value) {
95 $headers2[] = "$key: $value";
180 foreach ($headers as $key => $value) {
181 $out .= "$key: $value\r\n";
H A DSanitize.php252 * Set element/attribute key/value pairs of HTML attributes
260 * @param array|null $element_attribute Element/attribute key/value pairs, null for default
508 $value = $this->registry->call(Misc::class, 'absolutize_url', [$element->getAttribute($attribute), $this->base]);
509 if ($value !== false) {
510 $value = $this->https_url($value);
511 $element->setAttribute($attribute, $value);
549 $value = $attr->value;
551 // In XHTML, empty values should never exist, so we repeat the value
[all...]
H A DSimplePie.php568 * @var mixed Force input encoding to be set to the follow value
786 foreach ($url as $value) {
787 $this->multifeed_url[] = $this->registry->call(Misc::class, 'fix_protocol', [$value, 1]);
1444 * Set element/attribute key/value pairs of HTML attributes
1452 * @param array|null $element_attribute Element/attribute key/value pairs, null for default
1475 * @param string $qs The query string that the value should be passed to.
1529 $xml_is_sane = isset($values[0]['value']);
1851 // overwrite the current value of file.
2133 * The return value is an indexed array of elements matching the given
2136 * `attribs` then has one level of associative name => value dat
[all...]
H A DIRI.php113 * Each key is the scheme, each value is an array with each key as the IRI
114 * part and value as the default value for that part.
150 * @param mixed $value Property value
152 public function __set($name, $value) argument
155 call_user_func([$this, 'set_' . $name], $value);
164 call_user_func([$this, 'set_' . substr($name, 1)], $value);
424 $value = ord($string[$position]);
435 if (($value
[all...]
/dokuwiki/inc/
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 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...]
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php195 * Read value
204 $value = substr($this->data, $this->position, $len);
206 return $value;
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/inc/Ui/
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...]
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt452 The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered.
/dokuwiki/lib/scripts/
H A Dlinkwiz.js235 if(dw_linkwiz.textArea.form.id.value.indexOf(':') != -1 &&
H A Dqsearch.js43 var value = dw_qsearch.getSearchterm();
44 if (value === '') {
53 q: encodeURI(value)
H A Dtextselection.js24 return (!this.obj) ? '' : this.obj.value.substring(this.start,this.end);
77 selection.obj.value =
78 selection.obj.value.substring(0, selection.start) + text +
79 selection.obj.value.substring(selection.end, selection.obj.value.length);
H A Dfileuploader.js187 * `qq.obj2url({a:'b',c:'d'},'http://any.url/upload?otherParam=value');`
191 * `http://any.url/upload?otherParam=value&a=b&c=d`
405 if (file.value){
407 // get input value and remove path to normalize
408 name = file.value.replace(/.*(\/|\\)/, "");
979 // get input value and remove path to normalize
980 return this._inputs[id].value.replace(/.*(\/|\\)/, "");
1172 * @param {Object} params name-value string pairs
/dokuwiki/lib/plugins/styling/
H A Dadmin.php86 foreach ($replacements as $key => $value) {
93 echo '<td><input type="' . $this->colorType($value) . '" name="tpl[' . hsc($key) . ']" ' .
94 'id="tpl__' . hsc($key) . '" value="' . hsc($this->colorValue($value)) . '" ' .
125 * @param string $value
128 protected function colorValue($value)
130 if (preg_match('/^#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])$/', $value, $match)) {
133 return $value;
137 * Decide the input type based on the value
139 * @param string $value
124 colorValue($value) global() argument
138 colorType($value) global() argument
[all...]
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dmobile.less280 #config__manager fieldset td.value,
325 // 400px is only roughly the required value, this may be wrong under non-standard circumstances
/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
166 $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/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php503 // ie. length is the length of the full TLV encoding - it's not just the length of the value
542 $value = self::asn1map($decoded, $option, $special);
547 $value = $v;
550 if (isset($value)) {
552 $value = $special[$key]($value);
554 return [$key => $value];
764 foreach ($map as $i => $value) {
766 $values[] = $value;
859 // do not encode (implicitly optional) fields with value se
[all...]
H A DX509.php14 * portion of the certificate that contains optional parameters with default values. ie. if the parameter isn't there the default value is
15 * used. Problem is, if the parameter is there and it just so happens to have the default value there are two ways that that parameter can
16 * be encoded. It can be encoded explicitly or left out all together. This would effect the signature value and thus may invalidate the
134 * Attribute value disposition.
135 * If disposition is >= 0, this is the index of the target value.
138 const ATTR_APPEND = -2; // Add a value.
139 const ATTR_REPLACE = -3; // Clear first, then add a value.
530 $filters['tbsCertificate']['signature']['issuer']['rdnSequence']['value'] = $type_utf8_string;
531 $filters['tbsCertificate']['issuer']['rdnSequence']['value'] = $type_utf8_string;
532 $filters['tbsCertificate']['subject']['rdnSequence']['value']
4398 _setExtension($id, $value, $critical = false, $replace = true, $path = null) global() argument
4472 setExtension($id, $value, $critical = false, $replace = true) global() argument
4603 setAttribute($id, $value, $disposition = self ATTR_ALL) global() argument
4658 setKeyIdentifier($value) global() argument
5031 setRevokedCertificateExtension($serial, $id, $value, $critical = false, $replace = true) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php60 private $value;
63 * Mode independent value used for serialization.
173 $this->value = clone $x;
175 $this->value = new static("$x");
176 $this->value->setPrecision($x->getPrecision());
178 $this->value = new self::$mainEngine($x, $base);
189 return $this->value->toString();
197 return (string)$this->value;
207 return $this->value->__debugInfo();
218 return $this->value
191 var $value; global() variable in phpseclib\\Math\\BigInteger
1328 _baseSquare($value) global() argument
1367 _karatsubaSquare($value) global() argument
3622 _trim($value) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php67 // this value isn't really used anymore but i'm keeping it reserved for historical reasons
608 list($key, $value) = Strings::unpackSSH2('ss', $response);
609 $this->extensions[$key] = $value;
1006 foreach ($files as $value) {
1007 if ($value == '.' || $value == '..') {
1008 $result[] = $relativeDir . $value;
1011 if (is_array($this->query_stat_cache($this->realpath($dir . '/' . $value)))) {
1012 $temp = $this->nlist_helper($dir . '/' . $value, true, $relativeDir . $value
1419 _update_stat_cache($path, $value) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md187 * Fixed inline documentation for return value types for accuracy. [#570](https://github.com/simplepie/simplepie/pull/570)
189 * Removed unnecessary `else`s when a value has already been returned. [#566](https://github.com/simplepie/simplepie/pull/566)
217 * PHP 7.1 Support: Fixed PHP error when trying to use a non-numeric value in `round()`. [#458](https://github.com/simplepie/simplepie/pull/458)
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php38 // their values - you never know when a value may change in a future
465 * The "nth" value for fancy line highlighting
945 * are to be fancy. For example, if the value of this parameter is 5 then every
1423 foreach ($this->lexic_permissions as $key => $value) {
1424 if (is_array($value)) {
1425 foreach ($value as $k => $v) {
2255 * The value in $delimiters is expected to be an RegExp
3708 foreach ($arrays[$i] as $key => $value) {
3709 if (is_array($value) && isset($ret[$key])) {
3710 // if $ret[$key] is not an array you try to merge an scalar value wit
[all...]

12345