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 relevance

12345678910

/dokuwiki/inc/Form/
H A DForm.php17 * @var array name value pairs for hidden values
69 * @param string $value
72 public function setHiddenField($name, $value) argument
74 $this->hidden[$name] = $value;
93 * Warning: This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates
95 * return value of this function.
144 * @param string $value Value the attribute should have
148 public function findPositionByAttribute($name, $value, $offset = 0) argument
152 if ($this->elements[$pos]->attr($name) == $value) {
[all...]
H A DButtonElement.php23 parent::__construct('button', ['name' => $name, 'value' => 1]);
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php223 // Check the value is valid
224 $value = hexdec($ipv6_part);
225 if (dechex($value) !== strtolower($ipv6_part) || $value < 0 || $value > 0xFFFF) {
231 $value = (int) $ipv4_part;
232 if ((string) $value !== $ipv4_part || $value < 0 || $value > 0xFF) {
/dokuwiki/lib/scripts/
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);
/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
/dokuwiki/lib/plugins/config/
H A Dadmin.php95 echo '<div class="no"><input type="hidden" name="id" value="' . $ID . '" /></div>';
133 ? ' class="value error"'
134 : ' class="value"';
190 echo '<input type="hidden" name="do" value="admin" />';
191 echo '<input type="hidden" name="page" value="config" />';
194 echo '<input type="hidden" name="save" value="1" />';
285 * @param string $value
287 public function addLang($key, $value)
290 $this->lang[$key] = $value;
278 addLang($key, $value) global() argument
H A Dstyle.css37 #config__manager fieldset td.value {
45 [dir=rtl] #config__manager td.value input.checkbox {
50 [dir=rtl] #config__manager td.value label {
/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...]
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/
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 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 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
/dokuwiki/vendor/simplepie/simplepie/src/
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...]
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...]
/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...]
/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/lib/plugins/config/core/Setting/
H A DSettingNoDefault.php8 * A do-nothing class used to detect settings with no default value.
H A DSettingEmail.php19 $value = is_null($this->local) ? $this->default : $this->local;
20 if ($value == $input) return false;
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php78 public function __set($name, $value)
83 $this->$name = $value;
93 $this->$name = $value;
113 // defined by the current class, for some value of "current" that differs slightly
79 __set($name, $value) global() argument
/dokuwiki/lib/plugins/config/core/
H A DLoader.php215 foreach ($meta as $key => $value) {
216 if ($value[0] == 'fieldset') continue; //plugins only get one fieldset
217 $data[$prefix . $key] = $value;
244 foreach ($conf as $key => $value) {
245 $data[$prefix . $key] = $value;
/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/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...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php6 use IXR\DataType\Value; alias
54 $r = new Value($result);
62 <value>
64 </value>
/dokuwiki/inc/Extension/
H A DEvent.php115 * the value set by any <event>_before or <event> handlers if the default action is prevented
117 * or NULL no action took place and no handler modified the value
193 * @return mixed the event results value after all event processing is complete
194 * by default this is the return value of the default action however
/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";

12345678910