Home
last modified time | relevance | path

Searched refs:getParam (Results 51 – 75 of 103) sorted by path

12345

/plugin/bureaucracyau/helper/
H A Dfieldfile.php64 $file = $this->getParam('file');
H A Dfieldhidden.php27 $form->addHidden($params['name'], $this->getParam('value') . '');
36 function getParam($name) { function in helper_plugin_bureaucracyau_fieldhidden
H A Dfieldhiddenautoinc.php32 $form->addHidden($params['name'], $this->getParam('value') . '');
H A Dfieldnumber.php52 $value = $this->getParam('value');
54 … throw new Exception(sprintf($this->getLang('e_numeric'),hsc($this->getParam('display'))));
H A Dfieldstatic.php42 public function getParam($name) { function in helper_plugin_bureaucracyau_fieldstatic
43 return ($name === 'value') ? null : parent::getParam($name);
H A Dfieldsubmit.php85 public function getParam($name) { function in helper_plugin_bureaucracyau_fieldsubmit
86 return ($name === 'value') ? null : parent::getParam($name);
H A Dfieldtime.php37 $value = $this->getParam('value');
39 throw new Exception(sprintf($this->getLang('e_time'),hsc($this->getParam('display'))));
H A Dfieldusemailtemplate.php56 function getParam($name) { function in helper_plugin_bureaucracyau_fieldusemailtemplate
60 parent::getParam($name);
H A Dfielduser.php94 $value = $this->getParam('value');
96 throw new Exception(sprintf($this->getLang('e_user'),hsc($this->getParam('display'))));
H A Dfieldusers.php89 $users = array_filter(preg_split('/\s*,\s*/', $this->getParam('value')));
92 … throw new Exception(sprintf($this->getLang('e_users'), hsc($this->getParam('display'))));
H A Dfieldwiki.php43 public function getParam($name) { function in helper_plugin_bureaucracyau_fieldwiki
44 return ($name === 'value') ? null : parent::getParam($name);
H A Dfieldyesno.php50 public function getParam($key) { function in helper_plugin_bureaucracyau_fieldyesno
62 return parent::getParam($key);
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md1453 - Add getParam & getProperties methods to Elastica\Type\Mapping
1984 - Added getParam to Elastica_Result that more values can be retrieved from the hit array
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DAbstractUpdateAction.php37 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('refres
[all...]
H A DCollapse.php35 $existingInnerHits = $this->getParam('inner_hits');
H A DConnection.php73 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_COMPRESSION;
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_TIMEOUT;
241 return (bool) $this->getParam('enabled');
263 return (bool) $this->hasParam('persistent') ? $this->getParam('persisten
[all...]
H A DDocument.php239 return $this->getParam('pipeline');
H A DMapping.php56 return $this->getParam('properties');
140 public function getParam(string $key) function in Elastica\\Mapping
H A DParam.php107 public function getParam($key) function in Elastica\\Param
H A DQuery.php150 return $this->getParam('query');
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DFilter.php44 'filter' => $this->getParam('filter')->toArray(),
H A DFilters.php35 && \count($this->getParam('filters'))
H A DWeightedAvg.php23 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/
H A DTerms.php56 $terms = $this->getParam($this->field);
H A DWildcard.php43 $data = $this->getParam($this->field);
51 $data = $this->getParam($this->field);
65 $data = $this->getParam($this->field);
76 $data = $this->getParam($this->field);

12345