Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 887) sorted by last modified time

12345678910>>...36

/plugin/twofactor/
H A Dadmin.php189 $btn = $form->addButton('start', $this->getLang('start'))->val('0');
193 $btn = $form->addButton('start', $this->getLang('prev'))->val($start - $pagesize);
197 $btn = $form->addButton('start', $this->getLang('next'))->val($start + $pagesize);
201 $btn = $form->addButton('start', $this->getLang('last'))->val($usercount - $pagesize);
/plugin/twofactor/action/
H A Dprofile.php205 $el = $form->addRadioButton('provider', $provider->getLabel())->val($provider->getProviderID());
208 $el->getLabel()->val($provider->getLabel() . ' ' . $this->getLang('default'));
/plugin/dbquery/
H A Dhelper.php106 foreach ($parameters as $key => $val) {
107 if (is_array($val)) continue;
108 if (is_object($val)) continue;
111 if (is_int($val)) {
112 $sth->bindValue($key, $val, PDO::PARAM_INT);
114 $sth->bindValue($key, $val);
/plugin/siteexport/inc/
H A Dfunctions.php241 foreach( $value as $val ) {
247 $intermediateMore .= rawurlencode($val);
H A Dtoc.php22 private function isNotEmpty( $val ) { argument
23 return !empty($val);
/plugin/siteexport/lang/sv/
H A Dmanagerintro.txt5 När du är färdig, klicka på knappen vid nederst på sidan så kommer detta val att placeras på sidan.
/plugin/siteexport/
H A Dscript.js41 $('#copyurl').val(data[0]);
42 $('#wgeturl').val(data[1]);
43 $('#curlurl').val(data[2]);
397 case 'checkbox': elem.prop('checked', elem.val() == value); break;
403 if ( $(this).val() == value ) {
417 default: elem.val(value);
423 $(_.allElements + ':not(:checkbox)').val(null);
436 for ( var val in value ) {
437 if ( !value.hasOwnProperty(val)) {
440 … _.updateValue($('#siteexport #'+node+'_'+value[val]+':input[name='+node+'\\[\\]]'), value[val]);
[all …]
/plugin/linkback/action/
H A Dsend.php195 ->val('1');
/plugin/structpublish/action/
H A Dbanner.php169 $form->addTextInput('version', $this->getLang('newversion'))->val($newVersion);
H A Dmigration.php72 $sql = "REPLACE INTO opts (val,opt) VALUES ($version,'dbversion_structpublish')";
90 $sql = 'SELECT opt, val FROM opts WHERE opt=? OR opt=?';
93 foreach ($vals as $val) {
94 if ($val['opt'] === 'dbversion') {
95 $dbVersionStruct = $val['val'];
97 if ($val['opt'] === 'dbversion_structpublish') {
98 $dbVersionStructpublish = $val['val'];
H A Drevisions.php58 !empty(trim($el->val())) &&
61 $val = $el->val();
64 $el->val("$val $label");
/plugin/structpublish/helper/
H A Dnotify.php175 foreach ($vars as $var => $val) {
176 $mailtext = str_replace('@' . $var . '@', $val, $mailtext);
/plugin/diagrams/script/
H A DDiagramsForm.js134 this.$form.find('[name="' + key + '"]').val(value);
146 this.#attributes[key] = $elem.val();
/plugin/struct/meta/
H A DAccessTable.php464 $val = (string) $DBdata[0]['out' . $col->getColref()];
466 $val = '';
469 // multi val data is concatenated
471 $val = explode($sep, $val);
472 $val = array_filter($val);
475 $value = new Value($col, $val);
637 $colrefs = array_unique(array_map(static fn($val) => $val[
[all...]
H A DAggregationTable.php298 foreach ($params as $key => $val) {
299 $form->addHidden($key, $val);
H A DCSVExporter.php93 $val = $value->getRawValue();
94 if (is_array($val)) $val = implode(',', $val);
97 $row .= $this->escape($val);
H A DConfigParser.php49 [$key, $val] = $this->splitLine($line);
58 $this->config['schemas'] = array_merge($this->config['schemas'], $this->parseSchema($val));
64 $this->config['cols'] = $this->parseValues($val);
67 $this->config['sepbyheaders'] = (bool)$val;
72 $this->config['headers'] = $this->parseValues($val);
75 $this->config['align'] = $this->parseAlignments($val);
79 $this->config['widths'] = $this->parseWidths($val);
82 $this->config['min'] = abs((int)$val);
86 $this->config['limit'] = abs((int)$val);
90 $sorts = $this->parseValues($val);
180 parseSchema($val) global() argument
201 parseAlignments($val) global() argument
228 parseWidths($val) global() argument
[all...]
H A DSearch.php
H A DValue.php123 foreach ($value as $val) {
125 $raw = $val;
127 $raw = $this->column->getType()->rawValue($val);
130 $this->value[] = $val;
133 $this->display[] = $val;
134 $this->compare[] = $val;
136 $this->display[] = $this->column->getType()->displayValue($val);
137 $this->compare[] = $this->column->getType()->compareValue($val);
H A DValueValidator.php114 * @param string $val
117 public function filter($val)
119 return !blank($val);
111 filter($val) global() argument
/plugin/struct/script/
H A DAggregationEditor.js59 sectok: $me.parents('.structaggregationeditor').find('.struct_entry_form input[name=sectok]').val()
H A DEntryEditor.js34 $dtInput.val($dtInput.val().replace('T', ' '));
46 $input.val(date);
110 if (jQuery(this).val() == '') return;
H A DInlineEditor.js25 $form.append(jQuery('<input type="hidden" name="pid">').val(pid));
26 $form.append(jQuery('<input type="hidden" name="rid">').val(rid));
27 $form.append(jQuery('<input type="hidden" name="rev">').val(rev));
28 $form.append(jQuery('<input type="hidden" name="field">').val(field));
H A Dfunctions.js31 * @param {string} val
34 function split(val) { argument
35 return val.split(/,\s*/);
70 jQuery(document.getElementById(edid)).val(mediaid).change();
/plugin/struct/types/
H A DDropdown.php42 foreach ($this->getOptions() as $opt => $val) {
49 $html .= "<option $selected value=\"" . hsc($opt) . "\">" . hsc($val) . '</option>';

12345678910>>...36