Home
last modified time | relevance | path

Searched refs:val (Results 51 – 75 of 76) sorted by last modified time

1234

/dokuwiki/inc/
H A Dform.php330 foreach ($entries as $val => $cap) {
331 $data = ($value === $val) ? array('checked' => 'checked') : array();
332 $this->addElement(form_makeRadioField($name, $val, $cap, '', '', $data));
648 foreach ($values as $val => $text) {
649 $options[] = array($val, $text, (!is_null($selected) && $val == $selected));
653 foreach ($values as $val) {
654 if (is_array($val))
655 @list($val, $text) = $val;
[all...]
H A Dhtml.php226 foreach ($params as $key => $val) {
227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
973 if (is_array($params)) foreach ($params as $key => $val) {
974 $out .= ' <param name="' . hsc($key) . '" value="' . hsc($val) . '" />' . NL;
H A DDifferenceEngine.php818 $val = ob_get_contents();
820 return $val;
1135 $val = parent::format($diff);
1136 $val = str_replace(' ','&#160; ', $val);
1137 $val = preg_replace('/ (?=<)|(?<=[ >]) /', '&#160;', $val);
1138 return $val;
1249 $val = parent::format($diff);
1250 $val
[all...]
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php64 return (bool) $this->val('current', $value);
75 public function val($key, $value = null)
97 $this->val($key, $value);
110 $id = $this->val('id');
111 if ($this->val('mode') == self::MODE_MEDIA) {
114 } elseif ($this->val('mode') == self::MODE_PAGE) {
129 $formatted = dformat($this->val('date'));
130 if ($checkTimestamp && $this->val('timestamp') === false) {
146 return '<span class="sum">' . ' – ' . hsc($this->val('sum')) . '</span>';
157 if ($this->val('use
73 public function val($key, $value = null) global() function in dokuwiki\\ChangeLog\\RevisionInfo
[all...]
/dokuwiki/inc/Form/
H A DCheckableElement.php33 $myvalue = $this->val();
76 . '<span>' . $this->label->val() . '</span>' . DOKU_LF
H A DDropdownElement.php30 $this->val('');
109 public function val($value = null) function in dokuwiki\\Form\\DropdownElement
H A DElement.php97 foreach ((array) $attributes as $key => $val) {
98 $this->attr($key, $val);
149 public function val($value = null) function in dokuwiki\\Form\\Element
H A DFieldsetOpenElement.php35 $legend = $this->val();
H A DHTMLElement.php29 return $this->val();
H A DInputElement.php140 $this->val($value);
163 . '<span>' . hsc($this->label->val()) . '</span>' . DOKU_LF
H A DLabelElement.php28 return '<label ' . buildAttributes($this->attrs()) . '>' . $this->val() . '</label>';
H A DLegacyForm.php37 ->val($ctl['text'])
118 foreach ($legacy as $key => $val) {
120 $control[substr($key, 1)] = $val;
122 $control[$key] = $val;
124 $control[$key] = $val;
126 $attributes[$key] = $val;
H A DOptGroup.php23 * This is intended to be only called from within DropdownElement::val()
27 * @see DropdownElement::val()
62 foreach ($options as $key => $val) {
63 if (is_array($val)) {
64 if (!array_key_exists('label', $val)) {
70 array_key_exists('attrs', $val) &&
71 is_array($val['attrs']) &&
72 array_key_exists('selected', $val['attrs'])
75 'Please use function "DropdownElement::val()" to set the selected option'
78 $this->options[$key] = $val;
[all...]
H A DTagCloseElement.php92 return '</' . $this->val() . '>';
H A DTagElement.php30 return '<' . $this->val() . ' ' . buildAttributes($this->attrs()) . ' />';
H A DTagOpenElement.php31 return '<' . $this->val() . ' ' . buildAttributes($this->attrs()) . '>';
H A DTextareaElement.php34 public function val($value = null) function in dokuwiki\\Form\\TextareaElement
52 formText($this->val()) . '</textarea>';
H A DValueElement.php29 $this->val($value);
38 public function val($value = null) function in dokuwiki\\Form\\ValueElement
/dokuwiki/inc/HTTP/
H A DHTTPClient.php339 [$key, $val] = sexplode('=', $cookie, 2, '');
341 if ($val == 'deleted') {
346 $this->cookies[$key] = $val;
781 [$key, $val] = sexplode(':', $line, 2, '');
783 $val = trim($val);
788 $headers[$key][] = $val;
790 $headers[$key] = [$headers[$key], $val];
793 $headers[$key] = $val;
827 foreach ($this->cookies as $key => $val) {
[all...]
/dokuwiki/lib/plugins/logviewer/
H A Dscript.js12 var re = new RegExp($filter.val(), 'i');
/dokuwiki/lib/plugins/extension/lang/hu/
H A Dintro_install.txt
/dokuwiki/lib/plugins/authad/
H A Daction.php84 $element->val($usr);
H A Dauth.php700 if ($domain && is_array($this->conf[$domain] ?? '')) foreach ($this->conf[$domain] as $key => $val) {
701 $opts[$key] = $val;
755 foreach ($this->conf as $key => $val) {
756 if (is_array($val) && isset($val['account_suffix'])) {
757 $domains[$key] = ltrim($val['account_suffix'], '@');
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUsers.php135 $val=0;
138 if (in_array("SCRIPT",$options)){ $val=$val+1; }
139 if (in_array("ACCOUNTDISABLE",$options)){ $val=$val+2; }
140 if (in_array("HOMEDIR_REQUIRED",$options)){ $val=$val+8; }
141 if (in_array("LOCKOUT",$options)){ $val=$val+16; }
142 if (in_array("PASSWD_NOTREQD",$options)){ $val
[all...]
/dokuwiki/lib/tpl/
H A Dindex.php56 foreach ($ini['replacements'] as $key => $val) {
59 echo '<td>' . hsc($val) . '</td>';
61 if (preg_match('/^#[0-f]{3,6}$/i', $val)) {
62 echo '<div class="color" style="background-color:' . $val . ';">&#160;</div>';

1234