| /plugin/elasticsearch/vendor/ruflin/elastica/src/ |
| D | Result.php | 68 public function getParam($name) function in Elastica\\Result 88 return $this->getParam('_id'); 102 return $this->getParam('_type'); 110 return $this->getParam('fields'); 128 return $this->getParam('_index'); 138 return $this->getParam('_score'); 153 return $this->getParam('sort'); 171 return $this->getParam('_version'); 179 return $this->getParam('inner_hits'); 213 return $this->getParam('_source'); [all …]
|
| D | Connection.php | 73 return $this->hasParam('port') ? $this->getParam('port') : self::DEFAULT_PORT; 91 return $this->hasParam('host') ? $this->getParam('host') : self::DEFAULT_HOST; 109 return $this->hasParam('proxy') ? $this->getParam('proxy') : null; 132 … return $this->hasParam('transport') ? $this->getParam('transport') : self::DEFAULT_TRANSPORT; 150 …return (bool) $this->hasParam('compression') ? $this->getParam('compression') : self::DEFAULT_COMP… 168 return $this->hasParam('path') ? $this->getParam('path') : ''; 196 return (int) $this->hasParam('timeout') ? $this->getParam('timeout') : self::TIMEOUT; 221 …return (int) $this->hasParam('connectTimeout') ? $this->getParam('connectTimeout') : self::CONNECT… 241 return (bool) $this->getParam('enabled'); 263 return (bool) $this->hasParam('persistent') ? $this->getParam('persistent') : true; [all …]
|
| D | AbstractUpdateAction.php | 37 return $this->hasParam('_id') ? $this->getParam('_id') : null; 68 return $this->getParam('_index'); 116 return $this->getParam('if_seq_no'); 147 return $this->getParam('if_primary_term'); 178 return $this->getParam('version'); 210 return $this->getParam('op_type'); 242 return $this->getParam('routing'); 282 return $this->getParam('fields'); 310 return $this->getParam('retry_on_conflict'); 344 $refresh = $this->getParam('refresh'); [all …]
|
| D | Request.php | 71 return $this->getParam('method'); 93 return $this->getParam('data'); 111 return $this->getParam('path'); 121 return $this->getParam('query'); 169 return $this->getParam('contentType');
|
| /plugin/odt/helper/ |
| D | config.php | 440 public function getParam($name) { function in helper_plugin_odt_config 557 $value = $this->getParam ($name); 586 $template = $this->getParam ('template'); 589 …if (file_exists($this->getParam('mediadir').'/'.$this->getParam('tpl_dir')."/".$this->getParam ('t… 594 …$warning = sprintf($this->getLang('tpl_not_found'),$this->getParam ('template'),$this->getParam ('… 600 $odt_template = $this->getParam ('odt_template'); 603 …if (file_exists($this->getParam('mediadir').'/'.$this->getParam('tpl_dir')."/".$this->getParam ('o… 612 …arning = sprintf($this->getLang('tpl_not_found'),$this->getParam ('odt_template'),$this->getParam … 618 $temp = $this->getParam ('disable_links'); 628 $temp = $this->getParam ('toc_pagebreak'); [all …]
|
| /plugin/odt/renderer/ |
| D | page.php | 93 ('odt', 'odt', $this->config->getParam('css_template')); 108 switch ($this->config->getParam('css_usage')) { 119 $this->document->setMediaSelector($this->config->getParam('media_sel')); 132 …($this->css, $this->config->getParam('media_sel'), array($this, 'replaceURLPrefixesCallback'), fal… 140 $this->document->setPixelPerEm($this->config->getParam ('css_font_size')); 141 $this->document->setTwipsPerPixelX($this->config->getParam ('twips_per_pixel_x')); 142 $this->document->setTwipsPerPixelY($this->config->getParam ('twips_per_pixel_y')); 168 … $this->document->setOrderedListParams(NULL, $this->config->getParam('olist_label_align')); 169 … $this->document->setUnorderedListParams(NULL, $this->config->getParam('olist_label_align')); 182 if ($this->config->getParam ('apply_fs_to_non_css')) { [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/ |
| D | AwsAuthV4.php | 42 ? $this->getConnection()->getParam('aws_region') 78 return $connection->getParam('aws_credential_provider'); 83 $connection->getParam('aws_access_key_id'), 84 $connection->getParam('aws_secret_access_key'), 86 ? $connection->getParam('aws_session_token') 109 ? (bool) $conn->getParam('ssl')
|
| /plugin/bureaucracyau/helper/ |
| D | fieldfieldset.php | 41 $form->startFieldset(hsc($this->getParam('display'))); 77 if ($field->getParam('label') != $this->depends_on[0]) { 81 $hidden = $field->getParam('value') != $this->depends_on[1]; 107 function getParam($name) { function in helper_plugin_bureaucracyau_fieldfieldset 111 return parent::getParam($name);
|
| D | actionmail.php | 101 $value = $field->getParam('value'); 102 $label = $field->getParam('label'); 109 …if($field_tmp->getParam('label') === $field->depends_on[0] && $field_tmp->getParam('value') === $f… 119 $file = $field->getParam('file'); 135 if (!is_null($field->getParam('template')) ) { 136 $this->mailtemplate = $this->replace($field->getParam('template')); 146 if(!is_null($field->getParam('replyto'))) {
|
| D | field.php | 182 $preload_name = '@' . strtr($this->getParam('label'),' .','__') . '@'; 220 $label = $this->getParam('label'); 221 $value = $this->getParam('value'); 265 $value = $this->getParam('value'); 301 return !is_null($this->getParam('value')); 310 $value = $this->getParam('value'); 341 public function getParam($name) { function in helper_plugin_bureaucracyau_field 347 $value = $this->getParam('value');
|
| D | actiontemplate.php | 71 $pname = $field->getParam('pagename'); 99 if (!is_null($field->getParam('page_tpl')) && !is_null($field->getParam('page_tgt')) ) { 101 $templatepage = $this->replace($field->getParam('page_tpl')); 105 $relativetargetpage = $field->getParam('page_tgt'); 348 $label = $field->getParam('label'); 349 $file = $field->getParam('file'); 350 $ns = $field->getParam('namespace');
|
| /plugin/bureaucracy-au/helper/ |
| D | fieldfieldset.php | 41 $form->startFieldset(hsc($this->getParam('display'))); 77 if ($field->getParam('label') != $this->depends_on[0]) { 81 $hidden = $field->getParam('value') != $this->depends_on[1]; 107 function getParam($name) { function in helper_plugin_bureaucracyau_fieldfieldset 111 return parent::getParam($name);
|
| D | actionmail.php | 101 $value = $field->getParam('value'); 102 $label = $field->getParam('label'); 109 …if($field_tmp->getParam('label') === $field->depends_on[0] && $field_tmp->getParam('value') === $f… 119 $file = $field->getParam('file'); 135 if (!is_null($field->getParam('template')) ) { 136 $this->mailtemplate = $this->replace($field->getParam('template')); 146 if(!is_null($field->getParam('replyto'))) {
|
| D | field.php | 182 $preload_name = '@' . strtr($this->getParam('label'),' .','__') . '@'; 220 $label = $this->getParam('label'); 221 $value = $this->getParam('value'); 265 $value = $this->getParam('value'); 301 return !is_null($this->getParam('value')); 310 $value = $this->getParam('value'); 341 public function getParam($name) { function in helper_plugin_bureaucracyau_field 347 $value = $this->getParam('value');
|
| D | actiontemplate.php | 71 $pname = $field->getParam('pagename'); 99 if (!is_null($field->getParam('page_tpl')) && !is_null($field->getParam('page_tgt')) ) { 101 $templatepage = $this->replace($field->getParam('page_tpl')); 105 $relativetargetpage = $field->getParam('page_tgt'); 348 $label = $field->getParam('label'); 349 $file = $field->getParam('file'); 350 $ns = $field->getParam('namespace');
|
| /plugin/bureaucracy/helper/ |
| D | fieldfieldset.php | 41 $form->startFieldset(hsc($this->getParam('display'))); 77 if ($field->getParam('label') != $this->depends_on[0]) { 81 $hidden = $field->getParam('value') != $this->depends_on[1]; 107 function getParam($name) { function in helper_plugin_bureaucracy_fieldfieldset 111 return parent::getParam($name);
|
| D | actionmail.php | 110 $value = $field->getParam('value'); 111 $label = $field->getParam('label'); 118 …if($field_tmp->getParam('label') === $field->depends_on[0] && $field_tmp->getParam('value') === $f… 128 $file = $field->getParam('file'); 144 if (!is_null($field->getParam('template')) ) { 145 $this->mailtemplate = $this->replace($field->getParam('template')); 155 if(!is_null($field->getParam('replyto'))) {
|
| D | field.php | 182 $preload_name = '@' . strtr($this->getParam('label'),' .','__') . '@'; 220 $label = $this->getParam('label'); 221 $value = $this->getParam('value'); 265 $value = $this->getParam('value'); 301 return !is_null($this->getParam('value')); 310 $value = $this->getParam('value'); 341 public function getParam($name) { function in helper_plugin_bureaucracy_field 347 $value = $this->getParam('value');
|
| D | actiontemplate.php | 85 $pname = $field->getParam('pagename'); 110 if (!is_null($field->getParam('page_tpl')) && !is_null($field->getParam('page_tgt')) ) { 114 $templatepage = $this->replace($field->getParam('page_tpl')); 118 $relativetargetpage = $resolver->resolveId($field->getParam('page_tgt')); 393 $label = $field->getParam('label'); 394 $file = $field->getParam('file'); 395 $ns = $field->getParam('namespace');
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/ |
| D | WeightedAvg.php | 23 if ($this->hasParam('value') && isset($this->getParam('value')['script'])) { 43 if ($this->hasParam('value') && isset($this->getParam('value')['field'])) { 59 if ($this->hasParam('weight') && isset($this->getParam('weight')['script'])) { 79 if ($this->hasParam('weight') && isset($this->getParam('weight')['field'])) {
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Query/ |
| D | Wildcard.php | 43 $data = $this->getParam($this->field); 51 $data = $this->getParam($this->field); 65 $data = $this->getParam($this->field); 76 $data = $this->getParam($this->field);
|
| /plugin/syntaxhighlighter3/sxh3/src/js/ |
| D | shCore.js | 202 if (highlighter.getParam('collapse') != true) 205 var title = highlighter.getParam('title'); 1283 getParam: function(name, defaultValue) method in sh.Highlighter 1362 firstLine = parseInt(this.getParam('first-line')) 1378 var list = this.getParam('highlight', []); 1420 firstLine = parseInt(this.getParam('first-line')), 1421 pad = this.getParam('pad-line-numbers') 1452 padLength = this.getParam('pad-line-numbers'), 1453 firstLine = parseInt(this.getParam('first-line')), 1455 brushName = this.getParam('brush') [all …]
|
| /plugin/odt/action/ |
| D | cache.php | 45 $template_name = $this->config->getParam('odt_template'); 49 …$template_path = $this->config->getParam('mediadir') . '/' . $this->config->getParam('tpl_dir') . …
|
| /plugin/findologicxmlexport/ |
| D | OutputXMLHelper.php | 80 public function getUrlParam($paramName, $defaultValue, $getParam) argument 82 if (isset($getParam[$paramName])) { 83 return htmlspecialchars($getParam[$paramName]);
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Rescore/ |
| D | Query.php | 63 $query = $this->getParam('query'); 76 $query = $this->getParam('query'); 89 $query = $this->getParam('query');
|