Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 32) sorted by relevance

12

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMySQL.php79 if (!$query = $this->mysql->query('SHOW TABLES')) {
85 while ($row = $query->fetchColumn()) {
90 …$query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (…
91 if ($query === false) {
99 …$query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'items` (`feed…
100 if ($query === false) {
120 …$query = $this->mysql->prepare('DELETE i, cd FROM `' . $this->options['extras']['prefix'] . 'cache…
124 $query->bindValue(':purge_time', $this->options['extras']['cache_purge_time']);
126 if (!$query->execute()) {
135 …$query = $this->mysql->prepare('SELECT COUNT(*) FROM `' . $this->options['extras']['prefix'] . 'ca…
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DXML.php98 $pubkey = self::query($xpath, 'publickey', 'Public Key is not present');
100 $QA = self::query($xpath, 'ecdsakeyvalue')->length ?
118 private static function query(\DOMXPath $xpath, $name, $error = null, $decode = true) function in phpseclib3\\Crypt\\EC\\Formats\\Keys\\XML
120 $query = '/';
123 …$query .= "/*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='…
125 $result = $xpath->query($query);
149 $nodes = $xpath->query("//*[namespace::*[.='$ns'] and not(../namespace::*[.='$ns'])]");
180 $x = self::query($xpath, 'publickey/x');
181 $y = self::query($xpath, 'publickey/y');
207 $namedCurve = self::query($xpath, 'namedcurve');
[all …]
/dokuwiki/_test/tests/inc/
H A Dmedia_searchlist.test.php62 protected function media_searchlist($query, $ns) argument
65 media_searchlist($query, $ns);
92 * @param string $query The query to use
96 public function testSearch($query, $expected) argument
98 $result = $this->media_searchlist($query, $this->upload_ns);
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php31 public function query() function in IXR\\Client\\ClientMulticall
34 return parent::query('system.multicall', $this->calls);
H A DClientSSL.php128 public function query() function in IXR\\Client\\ClientSSL
/dokuwiki/_test/core/
H A DTestRequest.php200 list($uri, $query) = sexplode('?', $uri, 2);
201 if($query) parse_str($query, $params);
206 $query = '?' . http_build_query($this->get, '', '&');
207 $query = str_replace(
210 $query
212 $uri = $uri . $query;
215 $this->setServer('QUERY_STRING', $query);
H A DphpQuery-onefile.php1417 protected function parseSelector($query) { argument
1420 $query = trim(
1422 preg_replace('@\s*(>|\\+|~)\s*@', '\\1', $query)
1426 if (! $query)
1432 $strlen = mb_strlen($query);
1440 $_query[] = mb_substr($query, $i, 1);
1441 $query = $_query;
1445 $c = $query[$i];
1449 while(isset($query[$i])
1450 && ($this->isChar($query[$i]) || in_array($query[$i], $tagChars))) {
[all …]
/dokuwiki/inc/Search/Query/
H A DQueryParser.php58 * @param string $query search query
64 public function convert(string $query): array argument
106 PhpString::strtolower($query),
264 $q['query'] = $query;
321 $query = implode(' ', $and);
324 $query .= ' -' . implode(' -', $not);
327 $query .= ' "' . implode('" "', $phrases) . '"';
330 $query .= ' @' . implode(' @', $ns);
333 $query .= ' ^' . implode(' ^', $notns);
335 return $query;
/dokuwiki/inc/
H A DAjax.php53 $query = $INPUT->post->str('q');
54 if (empty($query)) $query = $INPUT->get->str('q');
55 if (empty($query)) return;
57 $query = urldecode($query);
58 $data = (new MetadataSearch())->pageLookup($query, true, useHeading('navigation'));
97 $query = cleanID($INPUT->post->str('q'));
98 if (empty($query)) $query = cleanID($INPUT->get->str('q'));
99 if (empty($query)) return;
101 $data = (new MetadataSearch())->pageLookup($query);
114 $query, // the original query
H A Ddeprecated.php332 * @param string $query search query
341 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null) argument
345 …return (new dokuwiki\Search\FulltextSearch())->pageSearch($query, $highlight, $sort, $after, $befo…
445 * @param string $query search query
450 function ft_queryParser($Indexer, $query) argument
453 return (new dokuwiki\Search\Query\QueryParser())->convert($query);
H A Dmedia.php992 $query = $INPUT->str('q');
995 media_searchform($ns, $query, true);
996 if ($do == 'searchlist' || $query) {
997 media_searchlist($query, $ns, $auth, true, _media_get_sort_type());
1339 * @param string $query
1345 function media_searchlist($query, $ns, $auth = null, $fullscreen = false, $sort = 'natural') argument
1354 'query' => $query
1356 if (!blank($query)) {
1384 media_searchform($ns, $query);
1573 * @param string $query
[all …]
H A Dcommon.php1354 $query = [];
1356 parse_str($url['query'], $query);
1359 if (isset($query['q'])) {
1360 $q = $query['q'];
1361 } elseif (isset($query['p'])) {
1362 $q = $query['p'];
1363 } elseif (isset($query['query'])) {
1364 $q = $query['query'];
/dokuwiki/lib/plugins/extension/
H A Dremote.php46 * @param string $query The keyword(s) to search for
50 public function search($query, $max = 10) argument
57 $result = $repo->searchExtensions($query);
H A DRepository.php205 $query = $this->parseQuery($q);
206 $query['fmt'] = 'json';
209 $response = $httpclient->post(self::EXTENSION_REPOSITORY_API, $query);
H A Dcli.php235 * @param string $query
241 protected function cmdSearch($query, $showdetails, $max) argument
244 $result = $repo->searchExtensions($query);
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php135 $result = $this->query($this->getConf('check-pass'), $userdata);
219 $ok = $this->query($this->getConf('insert-user'), $userdata);
273 $ok = $this->query($this->getConf('update-user-login'), $params);
283 $ok = $this->query($this->getConf('update-user-pass'), $params);
293 $ok = $this->query($this->getConf('update-user-info'), $params);
386 $result = $this->query($this->getConf('list-users'), $filter);
422 $result = $this->query($this->getConf('count-users'), $filter);
439 $result = $this->query($sql, [':group' => $group]);
476 $result = $this->query($sql, [':user' => $user]);
529 $ok = $this->query($this->getConf('delete-user'), $userdata);
[all …]
/dokuwiki/inc/Ui/
H A DSearch.php14 protected $query; variable in dokuwiki\\Ui\\Search
32 $this->query = $QUERY;
48 $searchHTML = $this->getSearchIntroHTML($this->query);
50 $searchHTML .= $this->getSearchFormHTML($this->query);
62 * @param string $query
66 protected function getSearchFormHTML($query) argument
84 $searchForm->addTextInput('q')->val($query)->useInput(false);
448 * @param string $query the search query
452 protected function getSearchIntroHTML($query) argument
467 [hsc(rawurlencode($query)), hsc($query), $pagecreateinfo],
/dokuwiki/inc/Search/
H A DFulltextSearch.php48 * @param string $query the search query string
59 string $query, argument
69 'query' => $query,
H A DMetadataSearch.php74 $query = ($ns || $notns) ? implode(' ', $parsedQuery['highlight']) : $data['id'];
75 $cleaned = cleanID($query);
95 $search->addTerm('*' . $query . '*');
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php64 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DXML.php73 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
/dokuwiki/inc/Remote/
H A DLegacyApiCore.php218 public function legacySearch($query) argument
220 $this->searchPages($query);
223 foreach ($this->searchPages($query) as $page) {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php454 $comments = $xpath->query('//comment()');
648 $elements = $xpath->query('body//' . $tag);
735 $elements = $xpath->query('//*[@' . $attrib . ']');
755 $elements = $xpath->query('//*[@' . $attrib . ']');
H A DLocator.php348 $query = '(//head)[1]/link[@rel and @href]';
350 $queryResult = $xpath->query($query);
H A DMisc.php227 'query' => (string) $iri->query,
235 …l(string $scheme = '', string $authority = '', string $path = '', string $query = '', ?string $fra… argument
241 $iri->query = $query;

12