/plugin/svgedit/ |
H A D | script.js | 14 if (!field) return; 15 field = field[0]; 26 field = field[0]; 51 field = field[0]; 54 showhide(field); 76 field = field[0]; 84 field.parentNode.insertBefore(el, field); 92 field.parentNode.insertBefore(el, field); 100 field.parentNode.insertBefore(el, field); 114 field = field[0]; [all …]
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/ |
H A D | MatchQuery.php | 26 public function __construct(?string $field = null, $values = null) argument 28 if (null !== $field && null !== $values) { 29 $this->setParam($field, $values); 40 public function setField(string $field, $values): self argument 42 return $this->setParam($field, $values); 46 * Sets a param for the given field. 52 public function setFieldParam(string $field, string $key, $value): self argument 54 if (!isset($this->_params[$field])) { 55 $this->_params[$field] = []; 58 $this->_params[$field][ 68 setFieldQuery(string $field, string $query) global() argument 78 setFieldOperator(string $field, string $operator = self OPERATOR_OR) global() argument 88 setFieldAnalyzer(string $field, string $analyzer) global() argument 100 setFieldBoost(string $field, float $boost = 1.0) global() argument 114 setFieldMinimumShouldMatch(string $field, $minimumShouldMatch) global() argument 126 setFieldFuzziness(string $field, $fuzziness) global() argument 136 setFieldFuzzyRewrite(string $field, string $fuzzyRewrite) global() argument 146 setFieldPrefixLength(string $field, int $prefixLength) global() argument 156 setFieldMaxExpansions(string $field, int $maxExpansions) global() argument 168 setFieldZeroTermsQuery(string $field, string $zeroTermQuery = self ZERO_TERM_NONE) global() argument 180 setFieldCutoffFrequency(string $field, float $cutoffFrequency) global() argument [all...] |
H A D | MatchPhrase.php | 18 public function __construct(?string $field = null, $values = null) argument 20 if (null !== $field && null !== $values) { 21 $this->setParam($field, $values); 32 public function setField(string $field, $values): self argument 34 return $this->setParam($field, $values); 38 * Sets a param for the given field. 44 public function setFieldParam(string $field, string $key, $value): self argument 46 if (!isset($this->_params[$field])) { 47 $this->_params[$field] = []; 50 $this->_params[$field][ 60 setFieldQuery(string $field, string $query) global() argument 70 setFieldAnalyzer(string $field, string $analyzer) global() argument 82 setFieldBoost(string $field, float $boost = 1.0) global() argument [all...] |
H A D | Wildcard.php | 24 private $field; variable in Elastica\\Query\\Wildcard 26 public function __construct(string $field, string $value, float $boost = 1.0) argument 28 $this->field = $field; 30 $this->setParam($field, [ 38 return $this->field; 43 $data = $this->getParam($this->field); 44 $this->setParam($this->field, \array_merge($data, ['value' => $value])); 51 $data = $this->getParam($this->field); 52 $this->setParam($this->field, \array_merg [all...] |
H A D | Terms.php | 20 private $field; variable in Elastica\\Query\\Terms 25 public function __construct(string $field, array $terms = []) argument 27 if ('' === $field) { 28 throw new InvalidException('Terms field name has to be set'); 31 $this->field = $field; 42 return $this->setParam($this->field, $terms); 56 $terms = $this->getParam($this->field); 62 return $this->addParam($this->field, $term); 67 return $this->setParam($this->field, [ [all...] |
H A D | TermsSet.php | 16 private $field; variable in Elastica\\Query\\TermsSet 22 public function __construct(string $field, array $terms, $minimumShouldMatch) argument 24 if ('' === $field) { 25 throw new InvalidException('TermsSet field name has to be set'); 28 $this->field = $field; 45 return $this->addParam($this->field, $terms, 'terms'); 50 return $this->addParam($this->field, $minimumShouldMatchField, 'minimum_should_match_field'); 55 return $this->addParam($this->field, $script->toArray()['script'], 'minimum_should_match_script');
|
/plugin/combo/action/ |
H A D | profile.php | 187 foreach ($form->_content as $field) { 188 if (!is_array($field)) { 191 $fieldName = $field["name"]; 193 // this is not an input field 194 if ($field["type"] == "submit") { 201 if (isset($field["class"])) { 202 $field["class"] = $field["class"] . " " . $classes; 204 $field["class"] = $classes; 206 $newFormContent[] = $field; [all...] |
H A D | registration.php | 25 * If true, there is no password field 171 * Replace the field 174 * between the password and the password check field 177 foreach ($form->_content as $pos => $field) { 178 if (!is_array($field)) { 181 $fieldName = $field["name"]; 183 // this is not an input field 184 if ($field["type"] == "submit") { 191 if (isset($field["class"])) { 192 $field["clas [all...] |
H A D | resend.php | 100 foreach ($form->_content as $field) { 101 if (!is_array($field)) { 104 $fieldName = $field["name"]; 106 // this is not an input field 107 if ($field["type"] == "submit") { 114 if (isset($field["class"])) { 115 $field["class"] = $field["class"] . " " . $classes; 117 $field["class"] = $classes; 119 $newFormContent[] = $field; [all...] |
/plugin/struct/action/ |
H A D | bureaucracy.php | 71 /** @var helper_plugin_struct_field $field */ 72 $field = plugin_load('helper', 'struct_field'); 73 // we don't initialize the field but set the appropriate values 74 $field->opt = $helper->opt; // copy all the settings to each field 75 $field->opt['label'] = $column->getFullQualifiedLabel(); 76 $field->column = $column; 77 $event->data['fields'][] = $field; 92 foreach ($event->data['fields'] as $field) { 93 if (!is_a($field, 'helper_plugin_struct_fiel [all...] |
/plugin/authfacebook/lib/Authentication/ |
H A D | AccessTokenMetadata.php | 71 * @param string $field The property to retrieve. 76 public function getField($field, $default = null) argument 78 if (isset($this->metadata[$field])) { 79 return $this->metadata[$field]; 88 * @param string $field The property to retrieve. 96 public function getProperty($field, $default = null) argument 98 return $this->getField($field, $default); 105 * @param string $field The property to retrieve. 120 return $this->metadata[$parentField][$field]; 126 * @param string $field The property to retrieve. [all …]
|
/plugin/table2csv/ |
H A D | getTableData.php | 63 foreach( $fields AS $field ) { 65 if( is_string($field) && ( 66 strpos($field, $delimiter)!==false || 69 strpos($field, "\n")!==false || 70 strpos($field, "\r")!==false || 71 strpos($field, "\t")!==false || 72 strpos($field, ' ')!==false ) ) { 74 $field_len = strlen($field); 78 … if( $field[$ch] == $escape_char && $field[$ch+1] == $enclosure && $enc_is_quote ) { 87 $csvline .= $field[$ch]; [all …]
|
/plugin/dokumicrobugtracker/ |
H A D | edit.php | 18 function emailForChange($email, $id,$project,$field, $oldvalue,$value) argument 35 'FIELD' => $field, 64 $field = strtolower(htmlspecialchars($_POST['field'])); variable 68 if (($field == 'status') || ($field == 'severity') || ($field == 'version') || ($field == 'descript… 70 if ($field == 'delete') 74 …emailForChange($bugs[$id_bug]['author'],$id_bug, $project, $field, $bugs[$id_bug][$field], $value); 75 $bugs[$id_bug][$field]=$value;
|
/plugin/dwcommits/ |
H A D | syntax.php | 125 $field = trim($field); 128 switch($field) { 139 $field = 'terms_1'; 143 $field = 'OP_1'; 148 $field = 'terms_2'; 152 $field = 'OP_2'; 156 $field = 'author'; 159 $field = 'd1'; 162 $field = 'd2'; 165 $field = 'branch'; [all …]
|
/plugin/bez/mdl/ |
H A D | Validator.php | 13 public function add_rule($field, $rule) { argument 14 $this->rules[$field] = $rule; 17 public function delete_rule($field) { argument 18 if (isset($this->rules[$field])) { 19 unset($this->rules[$field]); 31 public function get_rule($field) { argument 32 if (!isset($this->rules[$field])) { 33 throw new \Exception("no rule exists for $field"); 35 return $this->rules[$field]; 42 public function set_error($field, argument 67 validate_field($field, $value) global() argument [all...] |
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/ |
H A D | Aggregation.php | 160 public function value_count(string $name, string $field): ValueCount argument 162 return new ValueCount($name, $field); 171 * @param string|null $field the field on which to perform this aggregation 173 public function percentiles(string $name, ?string $field = null): Percentiles argument 175 return new Percentiles($name, $field); 184 * @param string|null $bucketsPath the field on which to perform this aggregation 291 public function missing(string $name, string $field): Missing argument 293 return new Missing($name, $field); 366 public function ipv4_range(string $name, string $field) argument 380 histogram(string $name, string $field, $interval) global() argument 394 date_histogram(string $name, string $field, $interval) global() argument 408 geo_distance(string $name, string $field, $origin) global() argument 421 geohash_grid(string $name, string $field) global() argument 434 geotile_grid(string $name, string $field) global() argument [all...] |
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/ |
H A D | SearchMvt.php | 31 protected $field; variable in Elasticsearch\\Endpoints\\SearchMvt 39 $field = $this->field ?? null; 44 if (isset($index) && isset($field) && isset($zoom) && isset($x) && isset($y)) { 45 return "/$index/_mvt/$field/$zoom/$x/$y"; 76 public function setField($field): SearchMvt argument 78 if (isset($field) !== true) { 81 $this->field = $field;
|
/plugin/fksnewsfeed/ |
H A D | action.php | 147 if ($field === 'text') { 150 $data[$field] = $INPUT->param($field); 265 switch ($field) { 274 $input = new DateTimeInputElement($field, $this->getLang($field)); 285 … $input = $form->addTextInput($field, $this->getLang($field))->attr('class', 'form-control'); 289 $input = $form->addTextInput($field, $this->getLang($field))->attrs([ 295 $input = $form->addTextInput($field, $this->getLang($field))->attrs([ 301 $input = $form->addTextInput($field, $this->getLang($field))->attrs([ 309 $input = new InputElement('email', $field, $this->getLang($field)); 315 $input = $form->addTextInput($field, $this->getLang($field))->attrs([ [all …]
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/ |
H A D | RemoveProcessor.php | 18 * @param array|string $field 20 public function __construct($field) argument 22 $this->setField($field); 26 * Set field. 28 * @param array|string $field 32 public function setField($field): self argument 34 return $this->setParam('field', $field);
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/ |
H A D | ValueCount.php | 14 * @param string $field the field on which to perform this aggregation 16 public function __construct(string $name, string $field) argument 19 $this->setField($field); 23 * Set the field for this aggregation. 25 * @param string $field the name of the document field on which to perform this aggregation 29 public function setField(string $field): self argument 31 return $this->setParam('field', $field); [all...] |
H A D | GeoCentroid.php | 14 * @param string $field the field on which to perform this aggregation 16 public function __construct(string $name, string $field) argument 19 $this->setField($field); 23 * Set the field for this aggregation. 25 * @param string $field the name of the document field on which to perform this aggregation 29 public function setField(string $field): self argument 31 return $this->setParam('field', $field); [all...] |
H A D | GeoBounds.php | 6 * A metric aggregation that computes the bounding box containing all geo_point values for a field. 14 * @param string $field the field on which to perform this aggregation 16 public function __construct(string $name, string $field) argument 19 $this->setField($field); 23 * Set the field for this aggregation. 25 * @param string $field the name of the document field on which to perform this aggregation 29 public function setField(string $field): self argument 31 return $this->setParam('field', [all...] |
H A D | Missing.php | 14 * @param string $field the field on which to perform this aggregation 16 public function __construct(string $name, string $field) argument 19 $this->setField($field); 23 * Set the field for this aggregation. 25 * @param string $field the name of the document field on which to perform this aggregation 29 public function setField(string $field): self argument 31 return $this->setParam('field', $field); [all...] |
/plugin/dokucrypt2/ |
H A D | OLDER_VERSIONS.md | 22 var field = jQuery('#' + textboxId)[0], 24 opts = [field.value.substr(0,getSelection(field).start)]; 25 - if (field.form.prefix) { 27 - opts.push(field.form.prefix.value); 29 + //if (field.form.prefix) { // Dokucrypt Plugin Mod 30 + if (field.form && field.form.prefix) { // Dokucrypt Plugin Mod 32 + opts.push(field.form.prefix.value); 46 3. Inside that section (function), find: if (field [all...] |
/plugin/semanticdata/syntax/ |
H A D | entry.php | 269 $renderer->form->addHidden($fieldid . "[$field]", $vals[$field]); 303 foreach ($data['data'] as $field) { 310 if ($field['multi'] === '1') { 313 if (is_array($field['value'])) { 314 $field['value'] = join(', ', $field['value']); 318 isset($field['comment']) ? trim($field['comment']) : ''); 323 foreach ($nudata as $field) { 324 $ret .= $field[0] . str_repeat(' ', $len + 1 - utf8_strlen($field[0])) . ': ' . 325 $field[1]; 326 if ($field[2] !== '') { [all …]
|