| /plugin/svgedit/ |
| D | script.js | 13 var field = jQuery('#wiki__text'); 14 if (!field) return; 15 field = field[0]; 17 window.svgedit.setSvgString(field.value) (function(a) { 24 var field = jQuery('#wiki__text'); 25 if (!field) return; 26 field = field[0]; 27 field.value = data; 29 field = jQuery('#edbtn__save'); 30 field.click(); [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Query/ |
| 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); 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][$key] = $value; 68 public function setFieldQuery(string $field, string $query): self argument [all …]
|
| 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); 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][$key] = $value; 60 public function setFieldQuery(string $field, string $query): self argument [all …]
|
| 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_merge($data, ['boost' => $boost])); 65 $data = $this->getParam($this->field); [all …]
|
| D | Terms.php | 20 private $field; variable in Elastica\\Query\\Terms 25 public function __construct(string $field, array $terms = []) argument 27 if ('' === $field) { 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, [
|
| D | TermsSet.php | 16 private $field; variable in Elastica\\Query\\TermsSet 22 public function __construct(string $field, array $terms, $minimumShouldMatch) argument 24 if ('' === $field) { 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"]; 194 if ($field["type"] == "submit") { 201 if (isset($field["class"])) { 202 $field["class"] = $field["class"] . " " . $classes; 204 $field["class"] = $classes; 206 $newFormContent[] = $field; 212 $passwordText = $field["_text"]; 221 $confirmText = $field["_text"]; [all …]
|
| H A D | registration.php | 177 foreach ($form->_content as $pos => $field) { 178 if (!is_array($field)) { 181 $fieldName = $field["name"]; 184 if ($field["type"] == "submit") { 191 if (isset($field["class"])) { 192 $field["class"] = $field["class"] . " " . $classes; 194 $field["class"] = $classes; 196 $field["tabindex"] = "6"; 197 $newFormContent[] = $field; 203 $loginText = $field["_text"]; [all …]
|
| H A D | resend.php | 100 foreach ($form->_content as $field) { 101 if (!is_array($field)) { 104 $fieldName = $field["name"]; 107 if ($field["type"] == "submit") { 114 if (isset($field["class"])) { 115 $field["class"] = $field["class"] . " " . $classes; 117 $field["class"] = $classes; 119 $newFormContent[] = $field; 125 $loginText = $field["_text"]; 126 $loginValue = $field["value"];
|
| /plugin/struct/action/ |
| H A D | bureaucracy.php | 72 $field = plugin_load('helper', 'struct_field'); 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_field')) continue; 94 if (!$field->column->getType() instanceof Lookup) continue; 96 $value = $field->getParam('value'); 99 $config = $field->column->getType()->getConfig(); [all …]
|
| /plugin/authfacebook/lib/Authentication/ |
| 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. 110 public function getChildProperty($parentField, $field, $default = null) argument 116 if (!isset($this->metadata[$parentField][$field])) { [all …]
|
| /plugin/table2csv/ |
| D | getTableData.php | 63 foreach( $fields AS $field ) { 65 if( is_string($field) && ( 66 strpos($field, $delimiter)!==false || 67 strpos($field, $enclosure)!==false || 68 strpos($field, $escape_char)!==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); [all …]
|
| /plugin/dokumicrobugtracker/ |
| 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/ |
| D | syntax.php | 124 list($field,$val) = explode(':',$entry); 125 $field = trim($field); 127 if(preg_match('/^\s*#/',$field)) continue; 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'; [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, $code) { argument [all …]
|
| /plugin/refnotes/ |
| D | admin.php | 159 $field = $this->getFields(); 160 foreach ($field as $f) { 170 $field = array(); 174 $field[] = new $class($id, $fd); 177 return $field; 183 protected function printFieldRow($field, $startRow = true) { argument 188 if (get_class($field) != 'refnotes_config_textarea') { 189 $settingName = $field->getSettingName(); 199 print($field->getLabel()); 206 print($field->getControl()); [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/ |
| 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); 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): IpRange argument 368 return new IpRange($name, $field); 377 * @param string $field the name of the field on which to perform the aggregation [all …]
|
| /plugin/fksnewsfeed/ |
| D | action.php | 146 foreach (helper_plugin_newsfeed::$fields as $field) { 147 if ($field === 'text') { 148 $data[$field] = cleanText($INPUT->str('text')); 150 $data[$field] = $INPUT->param($field); 261 foreach (helper_plugin_newsfeed::$fields as $field) { 265 switch ($field) { 267 $input = $form->addTextarea('text', $this->getLang($field), -1)->attrs([ 274 $input = new DateTimeInputElement($field, $this->getLang($field)); 281 …put = $form->addDropdown('category', static::$categories, $this->getLang($field))->attr('class', '… 285 … $input = $form->addTextInput($field, $this->getLang($field))->attr('class', 'form-control'); [all …]
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/ |
| 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/jdraw/lib/ |
| D | apache-mime4j-0.6.jar | ... message/
org/apache/james/mime4j/field/
org/apache/james/mime4j/field ... |
| /plugin/jcapture/lib/ |
| D | apache-mime4j-0.6.jar | ... message/
org/apache/james/mime4j/field/
org/apache/james/mime4j/field ... |
| /plugin/semanticdata/syntax/ |
| D | entry.php | 268 foreach(array('title', 'multi', 'comment', 'type') as $field) { 269 $renderer->form->addHidden($fieldid . "[$field]", $vals[$field]); 303 foreach ($data['data'] as $field) { 304 if ($field['title'] === '') continue; 305 $s = syntax_plugin_semanticdata_entry::_normalize($field['title']); 306 if (trim($field['type']) !== '' || 307 (substr($s, -1, 1) === 's' && $field['multi'] === '')) { 308 $s .= '_' . syntax_plugin_semanticdata_entry::_normalize($field['type']); 310 if ($field['multi'] === '1') { 313 if (is_array($field['value'])) { [all …]
|
| /plugin/dokucrypt2/ |
| 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.form.prefix) { 47 4. Change it to: if (field.form && field.form.prefix) {
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Processor/ |
| D | RemoveProcessor.php | 18 * @param array|string $field 20 public function __construct($field) argument 22 $this->setField($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/ |
| 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); 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);
|