Home
last modified time | relevance | path

Searched refs:val (Results 26 – 50 of 76) sorted by relevance

1234

/dokuwiki/inc/Ui/
H A DUserProfile.php90 ->val($userinfo['user']);
99 ->val($userinfo['name']);
108 ->val($userinfo['mail']);
152 ->val('1');
H A DLogin.php54 ->val(($INPUT->bool('http_credentials')) ? '' : $INPUT->str('u'));
63 $form->addCheckbox('r', $lang['remember'])->id('remember__me')->val('1');
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)
/dokuwiki/inc/Form/
H A DCheckableElement.php33 $myvalue = $this->val();
76 . '<span>' . $this->label->val() . '</span>' . DOKU_LF
H A DFieldsetOpenElement.php35 $legend = $this->val();
H A DTagCloseElement.php92 return '</' . $this->val() . '>';
H A DInputElement.php140 $this->val($value);
163 . '<span>' . hsc($this->label->val()) . '</span>' . DOKU_LF
H A DDropdownElement.php30 $this->val('');
109 public function val($value = null) function in dokuwiki\\Form\\DropdownElement
/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/
H A Dconfutils.php149 [$key, $val] = sexplode('=', $line, 2, '');
151 $val = trim($val);
152 $versions[$key] = $val;
489 foreach ($new as $val) {
490 if (str_starts_with($val, DOKU_CONF_NEGATION)) {
491 $idx = array_search(trim(substr($val, 1)), $current);
496 $current[] = trim($val);
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/vendor/splitbrain/php-cli/src/
H A DOptions.php252 $val = array_shift($arg);
260 if (is_null($val) && $i + 1 < $argc && !preg_match('/^--?[\w]/', $this->args[$i + 1])) {
261 $val = $this->args[++$i];
263 if (is_null($val)) {
267 $this->options[$opt] = $val;
285 $val = null;
287 $val = $this->args[++$i];
289 if (is_null($val)) {
293 $this->options[$opt] = $val;
H A DTableFormatter.php210 $val = $wrapped[$col][$i];
212 $val = '';
214 $chunk = $this->pad($val, $width);
/dokuwiki/lib/scripts/
H A Dedit.js213 id: $dwform.find('input[name=id]').val(),
214 sectok: $dwform.find('input[name=sectok]').val()
245 doku_edit_text_content = $edit_text.val();
293 textChanged = doku_edit_text_content != $edit_text.val();
307 missing = $sum.val() === '';
H A Dmedia.js218 .val(LANG.mediainsert);
297 if ($name.val() != '') return;
303 text = $file.val();
306 $name.val(text);
388 .filter(':checked').val();
840 var val, i; variable
842 val = this.id.substring(this.id.length - 1);
844 val = dw_mediamanager.getOpt(opt);
847 if (val === false) {
854 if (val !
[all...]
/dokuwiki/bin/
H A Dindexer.php73 foreach ($data as $val) {
74 $this->index($val['id']);
/dokuwiki/inc/lang/hu/
H A Drevisions.txt
/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/Action/
H A DExport.php105 if (is_array($data['headers'])) foreach ($data['headers'] as $key => $val) {
106 header("$key: $val");
/dokuwiki/lib/plugins/logviewer/
H A Dscript.js12 var re = new RegExp($filter.val(), 'i');
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php770 foreach ($params as $key => $val) {
771 if (is_int($val)) {
772 $val = $this->pdo->quote($val, PDO::PARAM_INT);
773 } elseif (is_bool($val)) {
774 $val = $this->pdo->quote($val, PDO::PARAM_BOOL);
775 } elseif (is_null($val)) {
776 $val = 'NULL';
778 $val
[all...]
/dokuwiki/lib/plugins/revert/lang/hu/
H A Dintro.txt
/dokuwiki/lib/plugins/styling/
H A Dadmin.php201 foreach ($INPUT->arr('tpl') as $key => $val) {
202 $ini .= $key . ' = "' . addslashes($val) . '"' . "\n";
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php97 foreach ($data as $key => $val) {
98 if (is_array($val)) foreach ($val as $v) {
101 $string .= hsc($key) . "\t" . hsc($val) . "\n";
/dokuwiki/lib/plugins/config/core/
H A DLoader.php276 foreach ($lang as $key => $val) {
277 $strings[$prefix . $key] = $val;

1234