Home
last modified time | relevance | path

Searched refs:value (Results 26 – 50 of 118) sorted by last modified time

12345

/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php146 $xml_is_sane = isset($values[0]['value']);
212 $attributes[$attrName] = $xml->value;
222 $this->cdata(null, $xml->value);
272 foreach ($attributes as $name => $value) {
274 $attribs[$attrib_namespace][$attribute] = $value;
299 foreach ($attribs[''] as $name => $value) {
300 $this->data['data'] .= ' ' . $name . '="' . htmlspecialchars($value, ENT_COMPAT, $this->encoding) . '"';
400 return $data['value'] ?? '';
460 if (isset($link['value'])) {
461 $link = $link['value'];
[all...]
H A DRating.php69 * Rating value
74 public $value; variable in SimplePie\\Rating
82 public function __construct($scheme = null, $value = null) argument
85 $this->value = $value;
114 * Get the value of the rating
120 if ($this->value !== null) {
121 return $this->value;
H A DRestriction.php82 public $value; variable in SimplePie\\Restriction
90 public function __construct($relationship = null, $type = null, $value = null) argument
94 $this->value = $value;
143 if ($this->value !== null) {
144 return $this->value;
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php145 $value = (int)trim($this->_currentTagContents);
149 $value = (double)trim($this->_currentTagContents);
153 $value = (string)($this->_currentTagContents);
157 $value = new Date(trim($this->_currentTagContents));
160 case 'value':
163 $value = (string)$this->_currentTagContents;
168 $value = (boolean)trim($this->_currentTagContents);
172 $value = base64_decode($this->_currentTagContents);
178 $value = array_pop($this->_arraystructs);
195 // Add value t
[all...]
/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/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php58 * Any additional elements to include as an associated array. All $key => $value pairs
60 * <$key>$value</$key>
62 * if $value contains markup. This may be abused to embed tags not implemented by
140 * @param array $elements an associative array containing key => value pairs
148 foreach ($elements AS $key => $value) {
149 $ae .= $indentString."<$key>$value</$key>\n";
H A DJSCreator.php24 foreach ($feedArray as $value) {
25 $jsFeed .= "document.write('".trim(addslashes($value))."');\n";
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php538 * This key-value list contains general information about the ZIP file
660 ) as $hd) { // On ODT files, these headers are 0. Keep the previous value.
687 $value = substr($header, 0, $set['len']);
689 $extra[$set['id']] = $value;
/dokuwiki/inc/
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 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...]
/dokuwiki/inc/Subscriptions/
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 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 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/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...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingEmail.php19 $value = is_null($this->local) ? $this->default : $this->local;
20 if ($value == $input) return false;
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...]
/dokuwiki/lib/plugins/acl/
H A Dscript.js55 jQuery('#acl__user input').toggle(this.value === '__g__' ||
56 this.value === '__u__');
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPComputerCollection.php41 public function __set($attribute, $value) argument
H A DadLDAPContactCollection.php41 public function __set($attribute, $value) argument
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css660 .ui-progressbar .ui-progressbar-value {
670 .ui-progressbar-indeterminate .ui-progressbar-value {
/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;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php2547 foreach ($responses[$i] as $key => $value) {
2548 $this->keyboard_requests_responses[$key] = $value;
2561 foreach ($this->keyboard_requests_responses as $key => $value) {
2563 $responses[] = $value;
4113 // currently, there's only one possible value for $data_type_code: NET_SSH2_EXTENDED_DATA_STDERR
4129 list($value) = Strings::unpackSSH2('s', $response);
4130 switch ($value) {
4650 * named constants from it, using the value as the name of the constant and the index as the value of the constant.
4659 foreach ($arg as $key => $value) {
5360 setWindowColumns($value) global() argument
5371 setWindowRows($value) global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php90 * @return int current start value for pageination
251 echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
252 echo '<td><input type="text" name="username" class="edit" value="' . $this->htmlFilter('name') . '" /></td>';
253 echo '<td><input type="text" name="usermail" class="edit" value="' . $this->htmlFilter('mail') . '" /></td>';
254 echo '<td><input type="text" name="usergroups" class="edit" value="' . $this->htmlFilter('grps') . '" /></td>';
307 echo '<input type="hidden" name="do" value="admin" />';
308 echo '<input type="hidden" name="page" value="usermanager" />';
400 echo '<tr><th>' . $this->lang["field"] . "</th><th>" . $this->lang["value"] . "</th></tr>";
469 <td><input type="checkbox" id="' . $cmd . '_usernotify" name="usernotify" value="1" />
477 echo '<input type="hidden" name="do" value
512 htmlInputField($id, $name, $label, $value, $cando, $required, $indent = 0) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBaseDataCache.php70 * Fetches a value from the cache.
78 * @param mixed $default Default value to return if the key does not exist.
80 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
83 * MUST be thrown if the $key string is not a legal value.
114 * public function set(string $key, mixed $value, null|int|\DateInterval $ttl = null): bool;
118 * @param array $value The value of the item to store, must be serializable.
119 * @param null|int $ttl Optional. The TTL value of this item. If no value is sent and
120 * the driver supports TTL then the library may set a default value
128 set_data(string $key, array $value, int $ttl = null) global() argument
[all...]

12345