Home
last modified time | relevance | path

Searched refs:field (Results 126 – 150 of 555) sorted by relevance

12345678910>>...23

/plugin/struct/script/
H A DInlineEditor.js15 var field = $self.parents('table').find('tr th').eq($self.index()).data('field');
17 if ((!pid && !rid) || !field) return;
28 $form.append(jQuery('<input type="hidden" name="field">').val(field));
42 field: field
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVCard.php377 foreach($this->select($propertyName) as $field) {
380 if (isset($field['TYPE']) && $field['TYPE']->has('PREF')) {
382 } elseif (isset($field['PREF'])) {
383 $pref = $field['PREF']->getValue();
387 $preferred = $field;
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVCard.php377 foreach($this->select($propertyName) as $field) {
380 if (isset($field['TYPE']) && $field['TYPE']->has('PREF')) {
382 } elseif (isset($field['PREF'])) {
383 $pref = $field['PREF']->getValue();
387 $preferred = $field;
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVCard.php377 foreach($this->select($propertyName) as $field) {
380 if (isset($field['TYPE']) && $field['TYPE']->has('PREF')) {
382 } elseif (isset($field['PREF'])) {
383 $pref = $field['PREF']->getValue();
387 $preferred = $field;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2TransformationSummary.php43 public function setField(GooglePrivacyDlpV2FieldId $field) argument
45 $this->field = $field;
52 return $this->field;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Suggest/CandidateGenerator/
H A DDirectGenerator.php25 public function __construct(string $field) argument
27 $this->setField($field);
31 * Set the field name from which to fetch candidate suggestions.
35 public function setField(string $field) argument
37 return $this->setParam('field', $field);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/
H A DAppendProcessor.php18 * @param string $field field name
19 * @param array|string $value field values to append
21 public function __construct(string $field, $value) argument
23 $this->setField($field);
28 * Set field value.
/plugin/html2pdf/html2pdf/html2ps/
H A Dfilter.pre.fields.class.php26 $field = BoxTextFieldPageNo::from_box($tree);
28 $parent->insert_before($field, $tree);
34 $field = BoxTextFieldPages::from_box($tree);
35 $parent->insert_before($field, $tree);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractSimpleAggregation.php10 * Set the field for this aggregation.
12 * @param string $field the name of the document field on which to perform this aggregation
16 public function setField(string $field): self argument
18 return $this->setParam('field', $field);
38 if (!$this->hasParam('field') && !$this->hasParam('script')) {
39 throw new InvalidException('Either the field param or the script param should be set');
H A DHistogram.php17 * @param string $field the name of the field on which to perform the aggregation
20 public function __construct(string $name, string $field, $interval) argument
23 $this->setField($field);
42 * @param string $order "_count", "_term", or the name of a sub-aggregation or sub-aggregation response field
/plugin/structjoin/types/
H A DJoin.php106 $field = $column->getColName();
107 $column->getType()->select($QB, $rightalias, $field, $alias);
158 $field = $column->getColName();
166 $column->getType()->filter($add, $rightalias, $field, $comp, $value, $op);
185 $field = $column->getColName();
191 $column->getType()->sort($QB, $rightalias, $field, $order);
/plugin/strata/helper/
H A Dutil.php158 * Renders a predicate as a full field.
194 * Renders multiple values. If the mode is xhtml, this also surrounds the field with
205 * @param field the field name of this field
208 function renderField($mode, &$R, &$T, $values, $typename, $hint=null, &$type=null, $field=null, $separator=', ') { argument
217 $this->openField($mode, $R, $field);
226 function openField($mode, &$R, $field=null) { argument
227 if($mode == 'xhtml') $R->doc .= '<span class="strata-field" '.(!empty($field)
[all...]
/plugin/youtrack/syntax/
H A Dlist.php77 foreach($issue as $field) {
78 if ($field->attributes()->name == $col) {
80 $value = (string) $field->value;
81 $fullname = (string) $field->value->attributes()->fullName;
/plugin/masciimath/
H A Dsyntax.php351 …er'] ? null : $sym); $rightbracket = null; $row = array(); $matrix = ''; $field = ''; $fields_in_r…
361 if ($field == '') $matrix = false;
362 $row[] = $field;
363 $field = '';
365 $field .= $old['ml'];
388 if ($field == '') $matrix = false; $row[] = $field; $field = '';
/plugin/structsection/script/
H A Dmain.js20 const field = $self.data('struct');
25 if (!field) return;
34 $form.append(jQuery('<input type="hidden" name="field">').val(field));
48 field,
/plugin/authsplit/
H A Dauth.php439 * @param array $changes array of field/value pairs to be changed
447 foreach ($changes as $field => $value) {
448 if ($field == 'pass') {
464 elseif ($field == 'grps') {
480 elseif ( ($field == 'login') || ($field == 'name') || ($field == 'mail') ) {
483 if ($this->authplugins['primary']->canDo['mod' . ucfirst($field)]) {
486 $field => $value
502 $field
[all...]
/plugin/bureaucracy-au/_test/
H A DBureaucracyTest.php50 foreach ($data['fields'] as $i => $field) {
55 $isValid = $field->handle_post($values[$i], $data['fields'], $i, $form_id);
57 $validation_errors[] = $field->getParam('label');
H A Dsyntax.test.php62 $field = pq('form.bureaucracyau__plugin label span:contains(' . $name . ')', $doc);
63 $this->assertEquals(1, $field->length, "find span of $name");
66 $this->assertEquals(1, pq('sup', $field)->length, "is mandatory of $name");
69 $label = $field->parent();
/plugin/bureaucracyau/_test/
H A DBureaucracyauTest.php50 foreach ($data['fields'] as $i => $field) {
55 $isValid = $field->handle_post($values[$i], $data['fields'], $i, $form_id);
57 $validation_errors[] = $field->getParam('label');
H A Dsyntax.test.php62 $field = pq('form.bureaucracyau__plugin label span:contains(' . $name . ')', $doc);
63 $this->assertEquals(1, $field->length, "find span of $name");
66 $this->assertEquals(1, pq('sup', $field)->length, "is mandatory of $name");
69 $label = $field->parent();
/plugin/userimportextended/
H A Dadmin.php154 foreach ($this->defaults as $field) {
155 if (!in_array($field, self::DEFAULT_EMPTY) && empty($_REQUEST['defaults'][$field])) {
159 $this->defaults[$field] = $_REQUEST['defaults'][$field];
162 if ($field === 'groups' && strpos($_REQUEST['defaults'][$field], 'user') === false) {
163 $this->defaults[$field] .= ',user';
/plugin/glossary/
H A Dglossary.class.php259 foreach ($this->statusFields [$status] as $field)
260 $result [$field] = $root->getElementsByTagName ($field)->item (0)->nodeValue;
270 foreach ($this->statusFields [$status] as $field)
271 $root->appendChild ($xml->createElement ($field, htmlspecialchars ($values [$field])));
311 if ((!isset ($request[$field]) || $request[$field] == "") &&
312 $request[$field] != $oldValues [$field]) {
313 $request[$field] = $oldValues [$field];
315 } elseif (isset ($request[$field]) && $request[$field] != "" &&
316 $request[$field] != $oldValues [$field]) {
321 $request[$field] = $oldValues [$field];
[all …]
/plugin/mantisreporter/
H A Dsyntax.php301 if('prognose' === $customField->field->name) {
310 if('prognose' === $customField->field->name) {
311 return $customField->field->id;
373 $prognose->field = new stdClass();
374 $prognose->field->id = $this->getPrognoseId($_POST['projectId']);
375 $prognose->field->name = 'prognose';
/plugin/struct/lang/en/
H A Deditor_edit.txt5 Field names have to be unique. It is recommended to use short identifiers that unlikely change later as they will be used to reference the fields in aggregations later. Use the translation labels in the field's configuration for more human readable names.
7 The type of a field defines what kind of data can be stored in the field and influences how it will be displayed later. Each type has its own specific configuration options.
/plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/Traits/
H A DFieldTrait.php10 public function setField(string $field): self argument
12 return $this->setParam('field', $field);

12345678910>>...23