Home
last modified time | relevance | path

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

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMySQL.php119 if (!$query = $this->mysql->query('SHOW TABLES')) {
125 while ($row = $query->fetchColumn()) {
130 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (`id` TEXT CHARACTER SET utf8 NOT NULL, `items` SMALLINT NOT NULL DEFAULT 0, `data` BLOB NOT NULL, `mtime` INT UNSIGNED NOT NULL, UNIQUE (`id`(125)))');
131 if ($query === false) {
139 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'items` (`feed_id` TEXT CHARACTER SET utf8 NOT NULL, `id` TEXT CHARACTER SET utf8 NOT NULL, `data` MEDIUMBLOB NOT NULL, `posted` INT UNSIGNED NOT NULL, INDEX `feed_id` (`feed_id`(125)))');
140 if ($query === false) {
160 $query = $this->mysql->prepare('DELETE i, cd FROM `' . $this->options['extras']['prefix'] . 'cache_data` cd, ' .
164 $query->bindValue(':purge_time', $this->options['extras']['cache_purge_time']);
166 if (!$query
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php31 public function query() function in IXR\\Client\\ClientMulticall
33 // Prepare multicall, then call the parent::query() method
34 return parent::query('system.multicall', $this->calls);
H A DClientSSL.php125 * Set the query to send to the XML-RPC Server
128 public function query() function in IXR\\Client\\ClientSSL
138 //This is where we deviate from the normal query()
H A DClient.php52 if (!empty($bits['query'])) {
53 $this->path .= '?' . $bits['query'];
65 public function query() function in IXR\\Client\\Client
/dokuwiki/inc/
H A DAjax.php52 $query = $INPUT->post->str('q');
53 if (empty($query)) $query = $INPUT->get->str('q');
54 if (empty($query)) return;
56 $query = urldecode($query);
58 $data = ft_pageLookup($query, true, useHeading('navigation'));
97 $query = cleanID($INPUT->post->str('q'));
98 if (empty($query)) $query
[all...]
H A Dfulltext.php25 * Returns a list of matching documents for the given query
29 * @param string $query
37 function ft_pageSearch($query, &$highlight, $sort = null, $after = null, $before = null)
44 'query' => $query,
55 * Returns a list of matching documents for the given query
67 // parse the given query
68 $q = ft_queryParser($Indexer, $data['query']);
73 // lookup all words found in the query
82 // process the query
34 ft_pageSearch($query, & $highlight, $sort = null, $after = null, $before = null) global() argument
662 ft_queryParser($Indexer, $query) global() argument
[all...]
H A Dmedia.php989 $query = $INPUT->str('q');
992 media_searchform($ns, $query, true);
993 if ($do == 'searchlist' || $query) {
994 media_searchlist($query, $ns, $auth, true, _media_get_sort_type());
1401 * @param string $query
1407 function media_searchlist($query, $ns, $auth = null, $fullscreen = false, $sort = 'natural')
1416 'query' => $query
1418 if (!blank($query)) {
1422 $quoted = preg_quote($evdata['query'], '/');
1340 media_searchlist($query, $ns, $auth = null, $fullscreen = false, $sort = 'natural') global() argument
1564 media_searchform($ns, $query = '', $fullscreen = false) global() argument
[all...]
H A Dcommon.php351 * @return string query string
1380 * extracts the query from a search engine referrer
1401 $query = [];
1402 if (!array_key_exists('query', $url)) return '';
1403 parse_str($url['query'], $query);
1406 if (isset($query['q'])) {
1407 $q = $query['q'];
1408 } elseif (isset($query['p'])) {
1409 $q = $query['
[all...]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php132 $result = $this->query($this->getConf('check-pass'), $userdata);
216 $ok = $this->query($this->getConf('insert-user'), $userdata);
270 $ok = $this->query($this->getConf('update-user-login'), $params);
280 $ok = $this->query($this->getConf('update-user-pass'), $params);
290 $ok = $this->query($this->getConf('update-user-info'), $params);
383 $result = $this->query($this->getConf('list-users'), $filter);
419 $result = $this->query($this->getConf('count-users'), $filter);
436 $result = $this->query($sql, [':group' => $group]);
473 $result = $this->query($sql, [':user' => $user]);
526 $ok = $this->query(
688 protected function query($sql, $arguments = array()) global() function in auth_plugin_authpdo
[all...]
/dokuwiki/inc/Ui/
H A DSearch.php12 protected $query; variable in dokuwiki\\Ui\\Search
31 $this->query = $QUERY;
47 $searchHTML = $this->getSearchIntroHTML($this->query);
49 $searchHTML .= $this->getSearchFormHTML($this->query);
61 * @param string $query
65 protected function getSearchFormHTML($query) argument
83 $searchForm->addTextInput('q')->val($query)->useInput(false);
148 * Check if the query is simple enough to modify its namespace limitations without breaking the rest of the query
156 if (preg_match('/[\(\)\|]/', $parsedQuery['query'])
469 getSearchIntroHTML($query) global() argument
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Drepository.php144 * Search for plugins or templates using the given query string
146 * @param string $q the query string
151 $query = $this->parseQuery($q);
152 $query['fmt'] = 'json';
155 $data = $httpclient->post(self::EXTENSION_REPOSITORY_API, $query);
178 * Parses special queries from the query string
/dokuwiki/lib/plugins/extension/
H A Dcli.php37 $options->registerArgument('query', 'The keyword(s) to search for', true, 'search');
265 * @param string $query
271 protected function cmdSearch($query, $showdetails, $max)
275 $result = $repository->search($query);
266 cmdSearch($query, $showdetails, $max) global() argument
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php376 $comments = $xpath->query('//comment()');
538 $elements = $xpath->query('body//' . $tag);
606 $elements = $xpath->query('//*[@' . $attrib . ']');
615 $elements = $xpath->query('//*[@' . $attrib . ']');
H A DLocator.php292 $query = '//a[@rel and @href] | //link[@rel and @href]';
293 foreach ($xpath->query($query) as $link) {
H A DMisc.php188 return Misc::fix_protocol(Misc::compress_parse_url('http', $parsed['authority'], $parsed['path'], $parsed['query'], $parsed['fragment']), $http);
192 return Misc::fix_protocol(Misc::compress_parse_url('http', $parsed['path'], '', $parsed['query'], $parsed['fragment']), $http);
229 'query' => (string) $iri->query,
234 public static function compress_parse_url($scheme = '', $authority = '', $path = '', $query = '', $fragment = '') argument
240 $iri->query = $query;
H A DParser.php91 $query = '//*[contains(concat(" ", @class, " "), " h-feed ") or '.
93 $result = $xpath->query($query);
H A DSimplePie.php1475 * @param string $qs The query string that the value should be passed to.
1845 $query = '//*[contains(concat(" ", @class, " "), " h-feed ") or '.
1847 $result = $xpath->query($query);
/dokuwiki/inc/Remote/
H A DApiCore.php314 * This executes a full text search and returns the results. The query uses the standard
321 * @param string $query The search query as supported by the DokuWiki search
324 public function searchPages($query)
327 $data = ft_pageSearch($query, $regex);
365 search($query) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php143 if (isset($query)) {
144 $path .= '?' . $query;
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt30 You can query the occured error by calling the method get_last_error().
/dokuwiki/vendor/geshi/geshi/
H A DTHANKS33 - Gizmore - Providing some patch to query supported languages
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php