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 relevance

12345678910

/dokuwiki/vendor/simplepie/simplepie/src/
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/inc/Form/
H A DInputElement.php91 * Figures out how to access the value for this field from INPUT data
98 * correct value yourself
121 * Handles the useInput flag and set the value attribute accordingly
131 $value = $INPUT->str($name);
133 $value = $INPUT->arr($name);
134 if (isset($value[$key])) {
135 $value = $value[$key];
137 $value = '';
140 $this->val($value);
[all...]
H A DOptGroup.php32 foreach ($values as $value) {
33 if (isset($this->options[$value])) {
34 $this->values[] = $value;
44 * Options can be given as associative array (value => label) or as an
45 * indexd array (label = value) or as an array of arrays. In the latter
47 * option-value => array (
50 * attr-key => attr-value, ...
116 $html .= '<option' . $selected . ' value="' . hsc($key) . '" ' . $attrs . '>';
H A DTagCloseElement.php56 * @param null|string $value
60 public function attr($name, $value = null) argument
62 if ($value === null) {
/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/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;
/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/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/inc/ChangeLog/
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/vendor/geshi/geshi/src/geshi/
H A Dprogress.php62 'CREATE X-NODEREF','CURRENT-LANGUAGE','CURRENT-VALUE','DDE ADVISE',
72 'DO','DOS','DOWN','DYNAMIC-CURRENT-VALUE',
75 'FIX-CODEPAGE','FOR','FORM','FRAME-VALUE',
76 'GET','GET-KEY-VALUE','HIDE','IF',
88 'PUT-FLOAT','PUT-INT64','PUT-KEY-VALUE','PUT-LONG',
94 'SET-BYTE-ORDER','SET-POINTER-VALUE','SET-SIZE','SHOW-STATS',
151 'GET-BINARY-DATA','GET-BLUE-VALUE','GET-BROWSE-COLUMN','GET-BUFFER-HANDLE',
153 'GET-CGI-LONG-VALUE','GET-CGI-VALUE','GET-CHANGES','GET-CHILD',
154 'GET-CHILD-RELATION','GET-CONFIG-VALUE','GE
[all...]
/dokuwiki/lib/scripts/
H A Dcookie.js5 * simple name-value pairs - no complex types!
17 * Save a value to the cookie
43 * Get a Value from the Cookie
46 * @param def default value if key does not exist; if not set, returns undefined by default
H A Dfileuploaderextended.js63 nameElement.value = fileName;
86 ' <label class="qq-overwrite-check"><input type="checkbox" value="1" name="ow" class="dw__ow"> <span>' + LANG.media_overwrt + '</span></label>' +
93 ' <input class="qq-upload-name-input edit" type="text" value="" />' +
167 qq.setText(fileElement, nameInput.value);
176 $link = '<a href="' + result.link + '" id="h_:' + result.id + '" class="select">' + nameInput.value + '</a>';
190 button += '<input type="hidden" value="' + result.ns + '" name="ns">';
191 button += '<input type="hidden" value="1" name="recent">';
208 return name.value;
211 // get input value and remove path to normalize
212 return file.value
[all...]
/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 DSettingImConvert.php17 $value = is_null($this->local) ? $this->default : $this->local;
18 if ($value == $input) return false;
/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/
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 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/inc/parser/
H A Dparser.php64 public function __set($name, $value)
68 $this->handler = $value;
73 $this->lexer = $value;
77 $this->deprecationHelperMagicSet($name, $value);
71 __set($name, $value) global() argument
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedItem.php42 * Any additional elements to include as an associated array. All $key => $value pairs
44 * <$key>$value</$key>
46 * if $value contains markup. This may be abused to embed tags not implemented by
/dokuwiki/vendor/geshi/geshi/
H A Dbuild.xml11 <property name="version" value="1.0.9.1" />
12 <property name="stability" value="stable" />
13 <property name="zipfile" value="${phing.project.name}-${version}.zip" />
14 <property name="gzfile" value="${phing.project.name}-${version}.tar.gz" />
15 <property name="bz2file" value="${phing.project.name}-${version}.tar.bz2" />
16 <property name="pkgfile" value="geshi-${version}.tgz" />
17 <property name="fileprefix" value="geshi/" />
18 <property name="sfproject" value="GeSHi" />
19 <property name="sffilepath" value="g/ge/geshi/" />
21 <property name="releasenotes" value
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php78 * Key/value pairs of the headers
103 private const STATE_VALUE = 'value';
155 * Value of the hedaer currently being parsed
159 protected $value = ''; variable in SimplePie\\HTTP\\Parser
271 $this->value = trim($this->value, "\x0D\x20");
272 if ($this->name !== '' && $this->value !== '') {
276 $this->headers[$this->name] .= ', ' . $this->value;
278 $this->headers[$this->name] = $this->value;
282 $this->value
333 protected function value() global() function in SimplePie\\HTTP\\Parser
[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 DJSCreator.php24 foreach ($feedArray as $value) {
25 $jsFeed .= "document.write('".trim(addslashes($value))."');\n";
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
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...]

12345678910