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 51 – 75 of 232) sorted by path

12345678910

/dokuwiki/inc/
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
H A Dinfoutils.php639 foreach ($data as $key => $value) {
644 if (is_array($value)) debug_guard($data[$key]);
H A Dio.php106 * If you want to use the returned value in unserialize
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 Dparserutils.php39 * Use this if it is unlikely that the metadata value you are requesting
241 * @param string $key The key of the metdata value that shall be read (by default everything)
331 * @param array $data is an array with key ⇒ value pairs to be set in the metadata
333 * @param boolean $persistent indicates whether or not the particular metadata value will persist through
361 foreach ($data as $key => $value) {
364 foreach ($value as $subkey => $subvalue) {
384 // these keys, must have subkeys - a legitimate value must be an array
385 if (is_array($value)) {
387 $value :
388 array_replace((array)$meta['current'][$key], $value);
[all...]
H A Dsearch.php497 * return value is ignored for files
H A Dtemplate.php409 * instances. Attributes are given as key value pairs. Values will be HTML
730 * value of "off" to instruct the browser to disable it's own built in
1066 * value is found. If no value is found $alt is returned.
1124 echo dformat($tag['value']);
1126 echo hsc($tag['value']);
1138 * - string type type of value
1139 * - string value tag value (unescaped)
1159 $value
[all...]
/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...]
H A Dmetadata.php380 * @param string|int $x first value
381 * @param string|int $y second value
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
H A Drenderer.php525 * @param string|int $x first value
526 * @param string|int $y second value
H A Dxhtml.php768 * @param string|int $x first value
769 * @param string|int $y second value
/dokuwiki/
H A Dinstall.php195 <input type="hidden" name="l" value="<?php echo $LC ?>"/>
198 <input type="text" name="d[title]" id="title" value="<?php echo $d['title'] ?>" style="width: 20em;"/>
210 value="<?php echo $d['superuser'] ?>"/>
214 value="<?php echo $d['fullname'] ?>"/>
217 <input class="text" type="text" name="d[email]" id="email" value="<?php echo $d['email'] ?>"/>
227 <option value="0" <?php echo ($d['policy'] == 0) ? 'selected="selected"' : '' ?>><?php
229 <option value="1" <?php echo ($d['policy'] == 1) ? 'selected="selected"' : '' ?>><?php
231 <option value="2" <?php echo ($d['policy'] == 2) ? 'selected="selected"' : '' ?>><?php
250 echo '<input type="radio" name="d[license]" value="' . hsc($key) . '" id="lic_' . $key . '"' .
284 <input type="hidden" name="l" value
[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/lib/plugins/acl/
H A Dadmin.php357 '<input type="text" name="acl_w" class="edit" value="%s" />',
367 echo '<input type="hidden" name="ns" value="' . hsc($this->ns) . '" />';
368 echo '<input type="hidden" name="id" value="' . hsc($ID) . '" />';
369 echo '<input type="hidden" name="do" value="admin" />';
370 echo '<input type="hidden" name="page" value="acl" />';
371 echo '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
642 echo '<input type="hidden" name="ns" value="' . hsc($this->ns) . '" />';
644 echo '<input type="hidden" name="id" value="' . hsc($ID) . '" />';
646 echo '<input type="hidden" name="acl_w" value="' . hsc($this->who) . '" />';
647 echo '<input type="hidden" name="do" value
[all...]
H A Dscript.js55 jQuery('#acl__user input').toggle(this.value === '__g__' ||
56 this.value === '__u__');
/dokuwiki/lib/plugins/authad/
H A Daction.php80 // update user field value
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUsers.php365 // We also need to scale this to seconds but also this value is a _negative_ quantity!
602 * Return a list of all users in AD that have a specific value in a field
606 * @param string $searchFilter Value to search for in the specified field
H A DadLDAPUtils.php113 * Converts a string GUID to a hexdecimal value so it can be queried
219 * Convert a boolean value to a string
222 * @param bool $bool Boolean value
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPCollection.php96 foreach ($this->info[0][strtolower($attribute)] as $key => $value) {
98 $array[$key] = $value;
115 * @param string $value
118 abstract public function __set($attribute, $value); argument
H A DadLDAPComputerCollection.php41 public function __set($attribute, $value) argument
H A DadLDAPContactCollection.php41 public function __set($attribute, $value) argument
H A DadLDAPGroupCollection.php41 public function __set($attribute, $value) argument
H A DadLDAPUserCollection.php41 public function __set($attribute, $value) argument

12345678910