Home
last modified time | relevance | path

Searched refs:query (Results 526 – 550 of 964) sorted by relevance

1...<<21222324252627282930>>...39

/plugin/openid/Auth/OpenID/
H A DPostgreSQLStore.php84 $this->connection->query($this->sql['set_assoc']['update_assoc'],
96 $this->connection->query($this->sql['set_assoc']['insert_assoc'],
H A DDiscover.php91 if (array_key_exists('query', $parsed)) {
92 $query = $parsed['query'];
583 $resolver->query($iname,
/plugin/pagequery/
H A DPageQuery.php35 * @param string $query => original query
38 final public function renderAsEmpty($query, $error = ''): string
43 '<strong>' . $query . '</strong>'
62 * @param string $query user page query
63 * @return array processed query with necessary regex markup for namespace recognition
65 final public function parseNamespaceQuery(string $query): array
73 $tokens = explode(' ', trim($query));
75 $page_qry = $query;
39 renderAsEmpty($query, $error = '') global() argument
66 parseNamespaceQuery(string $query) global() argument
446 pageSearch(string $query) global() argument
456 pageLookup($query, $fullregex, $incl_ns, $excl_ns) global() argument
[all...]
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php257 $query = Sqlite::createSelectFromTableAndColumns($tableName, $attributes);
258 $query = "$query where $uidAttribute = ? ";
261 ->setQueryParametrized($query, [$uidValue]);
268 throw new ExceptionRuntimeInternal("An exception has occurred with the $tableName ({$metadata->getResource()}) selection query. Message: {$e->getMessage()}, Query: ($query", self::CANONICAL, 1, $e);
/plugin/searchcombinedgoogle/
H A Daction.php19 private $query = null; variable in action_plugin_searchcombinedgoogle
71 if ( $url != $this->query )
98 $this->query = $url;
/plugin/fedauth/Auth/OpenID/
H A DDiscover.php88 if (array_key_exists('query', $parsed)) {
89 $query = $parsed['query'];
555 $resolver->query($iname,
/plugin/bez/mdl/
H A DThread_commentFactory.php77 $this->model->sqlite->query('UPDATE task SET type=? WHERE thread_comment_id=?',
122 $r = $this->model->sqlite->query($sql, $from, $to);
128 $r = $this->model->sqlite->query($sql);
/plugin/externalembed/
H A Dsyntax.php448 $query = array();
452 … $query[strtolower($parameter[0])] = str_replace('"', '', $parameter[1]); //removes quotes
454 if(array_key_exists("fields", $query)) { // separate field names into an array if it exists
455 $fields = array_map("trim", explode(",", $query['fields']));
456 $query['fields'] = $fields;
458 return $query;
/plugin/authgoogle/google/contrib/
H A DGoogle_BigqueryService.php883 public $query; variable in Google_JobConfiguration
915 $this->query = $query;
918 return $this->query;
1121 public $query; variable in Google_JobConfigurationQuery
1167 $this->query = $query;
1170 return $this->query;
1355 public $query; variable in Google_JobStatistics
1371 $this->query = $query;
1374 return $this->query;
1574 public $query; variable in Google_QueryRequest
[all …]
/plugin/pagestat/
H A Dremote.php114 $rt=$sqli->query($sql_h_sel);
127 $rt = $sqli->query($sql_rr_sel);
153 $rt = $sqli->query($sql_ext_sel);
196 $rt=$sqli->query($sql_defs_sel);
/plugin/sqlite/
H A Dadmin.php118 // query form
167 * Execute and display the results of the given SQL query
306 foreach ($queries as $query) {
307 $link = $this->selfLink(false, ['sql' => $query['sql']]);
308 $del = $this->selfLink(false, ['cmd' => 'delete_query', 'name' => $query['name']]);
311 echo '<a href="' . $link . '">' . hsc($query['name']) . '</a>';
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Djson.worker.js1query=e.query||h,this.fragment=e.fragment||h):(this.scheme=function(e,t){return e||t?e:"file"}(e,o…
/plugin/dirtylittlehelper/mermaid/editor/
H A Djson.worker.js1query=e.query||h,this.fragment=e.fragment||h):(this.scheme=function(e,t){return e||t?e:"file"}(e,o…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DOauth2.php106 'location' => 'query',
110 'location' => 'query',
H A DCloudSourceRepositories.php146 'location' => 'query',
160 'location' => 'query',
164 'location' => 'query',
H A DForms.php141 'location' => 'query',
145 'location' => 'query',
149 'location' => 'query',
H A DFirebaseDynamicLinks.php105 'location' => 'query',
109 'location' => 'query',
/plugin/wikipediasnippet/
H A Dsyntax.php99 $title = $xml->query->pages->page['title'];
100 $text = $xml->query->pages->page->extract;
138 $url = $wpUrl.'w/api.php?action=query&meta=siteinfo&siprop=rightsinfo&format=xml';
/plugin/database2/
H A Dadmin.php231 if ( $query !== '' )
241 $result = $db->getLink()->query( $query );
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DREST.php184 parse_str($qs, $query);
185 if (isset($query['alt']) && $query['alt'] == 'media') {
/plugin/geonav/server/
H A Dget_state.php28 $query = "SELECT * FROM states WHERE state_abbr = '".$q."'"; variable
29 $result = sqlite_query($db, $query);
/plugin/simplemap/
H A Dsyntax.php68 [$type, $query] = explode('?', $match, 2);
69 parse_str($query, $data);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DMatchPhrase.php6 * Match Phrase query.
11 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query-phrase.html
56 * Sets the query string.
60 public function setFieldQuery(string $field, string $query): self argument
62 return $this->setFieldParam($field, 'query', $query);
/plugin/adfs/phpsaml/lib/Saml2/
H A DUtils.php926 * @param string $query Xpath Expresion
931 public static function query($dom, $query, $context = null) function in OneLogin_Saml2_Utils
943 $res = $xpath->query($query, $context);
945 $res = $xpath->query($query);
1117 $statusEntry = self::query($dom, '/samlp:Response/samlp:Status');
1125 …$codeEntry = self::query($dom, '/samlp:Response/samlp:Status/samlp:StatusCode', $statusEntry->item…
1136 …$messageEntry = self::query($dom, '/samlp:Response/samlp:Status/samlp:StatusMessage', $statusEntry…
1138 …$subCodeEntry = self::query($dom, '/samlp:Response/samlp:Status/samlp:StatusCode/samlp:StatusCode'…
H A DResponse.php371 …$encryptedIDNodes = OneLogin_Saml2_Utils::query($this->decryptedDocument, '/samlp:Response/saml:As…
549 … $responseIssuer = OneLogin_Saml2_Utils::query($this->document, '/samlp:Response/saml:Issuer');
988 …$expectedSignatureNodes = OneLogin_Saml2_Utils::query($this->document, OneLogin_Saml2_Utils::RESPO…
1032 $assertionReferenceNode = $xpath->query($signatureQuery)->item(0);
1036 $responseReferenceNode = $xpath->query($signatureQuery)->item(0);
1058 return $xpath->query($nameQuery);
1064 * @param string $query Xpath Expresion
1068 private function _query($query) argument
1071 return OneLogin_Saml2_Utils::query($this->decryptedDocument, $query);
1073 return OneLogin_Saml2_Utils::query($this->document, $query);

1...<<21222324252627282930>>...39