Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 76) sorted by path

1234

/dokuwiki/bin/
H A Dindexer.php73 foreach ($data as $val) {
74 $this->index($val['id']);
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/Action/
H A DExport.php105 if (is_array($data['headers'])) foreach ($data['headers'] as $key => $val) {
106 header("$key: $val");
/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/
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...]
H A DJpegMeta.php173 if(isset($info['val'])){
174 $info = $info['val'];
179 if(isset($part['val'])){
180 $arr[] = $part['val'];
1814 $value['val'] = 0;
1818 $value['val'] = $a / $b;
1826 $value[$j]['val'] = 0;
1830 $value[$j]['val'] = $a / $b;
1869 $value['val'] = 0;
1873 $value['val']
3057 _putByte(& $data, $pos, $val) global() argument
3081 _putShort(& $data, $pos = 0, $val = 0, $bigEndian = true) global() argument
3134 _putLong(& $data, $pos, $val, $bigEndian = true) global() argument
[all...]
H A DMailer.class.php605 * @param string $val
608 protected function wrappedHeaderLine($key, $val)
610 return wordwrap("$key: $val", 78, MAILHEADER_EOL . ' ') . MAILHEADER_EOL;
621 foreach ($this->headers as $key => $val) {
622 if ($val === '' || $val === null) continue;
623 $headers .= $this->wrappedHeaderLine($key, $val);
586 wrappedHeaderLine($key, $val) global() argument
/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/inc/Search/
H A DIndexer.php216 foreach ($values as $val) {
217 $val = (string)$val;
218 if ($val !== "") {
219 $id = array_search($val, $metawords, true);
221 // didn't find $val, so we'll add it to the end of metawords and create a placeholder in metaidx
223 $metawords[$id] = $val;
688 foreach ($value_array as $val) {
690 if (call_user_func_array($func, [$val, $word]))
691 $value_ids[$i][] = $val;
[all...]
/dokuwiki/inc/Ui/
H A DEditor.php123 ->val($SUM);
129 $form->addCheckbox('minor', $lang['minoredit'])->id('edit__minoredit')->addClass('nowrap')->val('1');
207 $data['form']->addTextarea('wikitext', '')->attrs($attr)->val($TEXT)
H A DLogin.php54 ->val(($INPUT->bool('http_credentials')) ? '' : $INPUT->str('u'));
63 $form->addCheckbox('r', $lang['remember'])->id('remember__me')->val('1');

1234