Home
last modified time | relevance | path

Searched refs:params (Results 2501 – 2525 of 2939) sorted by relevance

1...<<101102103104105106107108109110>>...118

/plugin/struct/types/
H A DDate.php52 $params = [
59 $attributes = buildAttributes($params, true);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A Dfunctions.php311 * @param array $params Query string parameters.
320 function build_query(array $params, $encoding = PHP_QUERY_RFC3986) argument
322 return Query::build($params, $encoding);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php119 $params = $format::load($signature);
120 if ($params === false || count($params) != 2) {
123 extract($params);
/plugin/statistics/inc/
H A DStatisticsLogger.class.php134 $params = array();
135 parse_str($qpart, $params);
144 if(empty($params[$k])) continue;
145 $query = $params[$k];
154 if(empty($params[$k])) continue;
155 $query = $params[$k];
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php198 * @param null|array $params
204 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null) argument
223 'uri' => $this->getURI($uri, $params),
352 private function getURI(string $uri, ?array $params): string argument
354 if (isset($params) === true && !empty($params)) {
355 $params = array_map(
365 $params
368 $uri .= '?' . http_build_query($params);
/plugin/bureaucracy-au/helper/
H A Dfieldsubmit.php33 public function renderfield($params, Doku_Form $form, $formid) { argument
48 parent::renderfield($params, $form, $formid);
H A Dfieldfieldset.php36 * @param array $params Additional HTML specific parameters
40 function renderfield($params, Doku_Form $form, $formid) { argument
/plugin/bureaucracyau/helper/
H A Dfieldsubmit.php33 public function renderfield($params, Doku_Form $form, $formid) { argument
48 parent::renderfield($params, $form, $formid);
H A Dfieldfieldset.php36 * @param array $params Additional HTML specific parameters
40 function renderfield($params, Doku_Form $form, $formid) { argument
/plugin/topbarsyntax/
H A Dsyntax.php51 … $params = explode(',',$match); // if you will have more parameters and choose ',' to delim them
52 return $params;
/plugin/bureaucracy/helper/
H A Dfieldsubmit.php33 public function renderfield($params, Doku_Form $form, $formid) { argument
48 parent::renderfield($params, $form, $formid);
H A Dfieldfieldset.php36 * @param array $params Additional HTML specific parameters
40 function renderfield($params, Doku_Form $form, $formid) { argument
/plugin/svgpureinsert/
H A Dsyntax.php77 list($id, $params) = explode('?', $id, 2);
84 if(preg_match('/(\d+)(x(\d+))?/', $params, $m)) {
/plugin/iframe/
H A Dsyntax.php92 $params = buildAttributes($opts);
93 if($data['fullscreen']) $params .= ' allowfullscreen';
94 $R->doc .= "<iframe $params>".(isset($alt) ? hsc($alt) : '').'</iframe>';
/plugin/diagramsnet/
H A Dsyntax.php60 $params = Doku_Handler_Parse_Media($match);
61 return $params;
/plugin/pagestat/
H A Dscript.js232 PTwindow.Factory(window_type,params);
676 var params={ class in Analyze_Win
679 MulEditwindow.call(this,params);
1023 MulEditwindow.call(this,params);
1455 params.subclass="parse_learn";
1528 params.subclass="search_learn";
1559 if(params.pageid==null){
1565 params.subclass="ptopen";
1571 mdata['pageid']=params.pageid;
1575 mdata['reflect']=params.winid;
[all …]
/plugin/ryubin/syntax/
H A Dryubin.php42 list($img,$params) = explode('&',$match,2);
80 $params = explode('&',$params);
81 foreach ($params as $param) {
/plugin/data-au/syntax/
H A Dtable.php522 $params = $this->dthlp->_a2ua('dataflt', $_REQUEST['dataflt']);
524 $params['dataausrt'] = $_REQUEST['dataausrt'];
526 $params['dataauofs'] = $prev;
528 $text .= '<a href="' . wl($ID, $params) .
539 $params = $this->dthlp->_a2ua('dataflt', $_REQUEST['dataflt']);
541 $params['dataausrt'] = $_REQUEST['dataausrt'];
543 $params['dataauofs'] = $next;
545 $text .= '<a href="' . wl($ID, $params) .
/plugin/authgoogle/google/contrib/
H A DGoogle_CivicInfoService.php34 $params = array();
35 $params = array_merge($params, $optParams);
36 $data = $this->__call('electionQuery', array($params));
55 $params = array('electionId' => $electionId, 'postBody' => $postBody);
56 $params = array_merge($params, $optParams);
57 $data = $this->__call('voterInfoQuery', array($params));
/plugin/data/syntax/
H A Dtable.php230 // Save current request params for comparison in updateSQL
262 $this->updateSQLwithQuery($data); // handles request params
378 // Save current request params to not loose them
460 // Add current request params
535 // keep url params
536 $params = $this->dthlp->a2ua('dataflt', $_REQUEST['dataflt']);
538 $params['datasrt'] = $_REQUEST['datasrt'];
540 $params['dataofs'] = $prev;
542 $text .= '<a href="' . wl($ID, $params) .
552 // keep url params
[all...]
/plugin/authgoogle/google/io/
H A DGoogle_HttpRequest.php82 $params = array();
83 parse_str($queryStr, $params);
84 return $params;
/plugin/strata/types/
H A Dwiki.php155 // fetch params from old link
158 $params = '?'.$parts[1];
160 $params = '';
178 return '[['.$newLink.$params.$title.']]';
/plugin/components/
H A DREADME.md13 2. `protected function auth($params) { return ...; }`
14 …* here $params is the params that got passed from the client, and it returns TRUE if the user is a…
16 3. `protected function call($params) { return ...; }`
17 …* here $params is the same as above, and the return value is the response to be sent to the client…
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
H A DFunctionDeclarationArgumentSpacingSniff.php125 $params = array();
215 if (empty($params) === false) {
377 $params[] = $nextParam;
385 if (empty($params) === true) {
396 $lastParam = array_pop($params);
/plugin/gtime/gtlib/tsp/
H A DGTPublicationsFile.php475 $params = $certificate->getParameters();
477 if ($params["validFrom_time_t"] > $now) {
481 if ($params["validTo_time_t"] < $now) {
485 …if (isset($params['subject']['emailAddress']) && $params['subject']['emailAddress'] == 'publicatio…

1...<<101102103104105106107108109110>>...118