Home
last modified time | relevance | path

Searched refs:options (Results 176 – 200 of 1516) sorted by last modified time

12345678910>>...61

/plugin/orphanmedia2/
H A DLICENSE109 the interface presents a list of user commands or options, such as a
H A Ddokuwiki-plugin-page.md30 Use this plugin to find orphan and missing media files within your DokuWiki. There are 4 options pr…
67 the following syntax is valid (put the options together without delimiter):
/plugin/ifauthex/lib/
H A Dtokenizer.php19 $options = substr($regex, $lastDelim + 1);
21 return array($regex, $options);
/plugin/odtsupport/
H A DLICENSE109 the interface presents a list of user commands or options, such as a
/plugin/usecounter/
H A DLICENSE109 the interface presents a list of user commands or options, such as a
/plugin/barcodes/
H A Dcomposer.lock821 "description": "Library for parsing CLI options",
/plugin/docnavigation/syntax/
H A Dtoc.php81 $options = [
94 $options['start'] = $this->getFullPageid($value);
115 $options['includeheadings'] = [$start, $end];
118 $options['numbers'] = !empty($value);
121 $options['useheading'] = !empty($value);
124 $options['hidepagelink'] = !empty($value);
128 if ($options['hidepagelink'] && $options['includeheadings'] === false) {
129 $options['includeheadings'] = [1, 2];
131 return $options;
140 render($format, Doku_Renderer $renderer, $options) global() argument
[all...]
/plugin/dw2markdown/
H A Drenderer.php372 function file($text, $language = NULL, $filename = NULL, $options = NULL) { argument
382 function code($text, $language = NULL, $filename = NULL, $options = NULL) { argument
/plugin/edittable/lib/
H A Dhandsontable.full.js1680 options.writable = options.writable !== false;
1681 options.enumerable = options.enumerable !== false;
1682 options.configurable = options.configurable !== false;
1986 var options = {
2006options.bubbles, options.cancelable, options.view, options.detail, options.screenX, options.screen…
29513 var options = {
35220 options.format = options.format || this.defaultDateFormat;
35221 options.reposition = options.reposition || false;
35242 return options;
35823 var options;
[all …]
/plugin/pubmed2020/classes/
H A Dpubmed2020.php157 $options = explode("|", $searchTerms);
158 if (count($options) < 1)
162 if (substr($options[0], 0, 1) === "#") {
163 $title = substr($options[0], 1);
164 array_shift($options);
168 $url = sprintf($this->pubmedSearchURL, urlencode($options[0]));
169 if (count($options) > 1)
170 $url .= "&".implode("&", array_slice($options, 1));
/plugin/statdisplay/
H A Dcli.php18 protected function setup(Options $options) argument
20 $options->setHelp('Control the statdisplay plugin');
21 $options->registerCommand('parse', 'Parse and analyse the log file');
22 …$options->registerOption('clear', 'Drop all previously parsed log data and reparse the whole log f…
24 … $options->registerOption('lines', 'Number of lines to read per iteration', 'l', 'lines', 'parse');
30 protected function main(Options $options) argument
32 switch ($options->getCmd()) {
35 $this->options->getOpt('clear'),
36 (int)$this->options->getOpt('lines', $this->getConf('lines'))
40 echo $this->options->help();
/plugin/advanced/admin/
H A Dexport.php108 $options = array();
110 search($namespaces, $conf['datadir'], 'search_namespaces', $options, '');
149 $options = array('depth' => $depth);
151 search($pages, $conf['datadir'], 'search_allpages', $options, $namespace);
H A Dimport.php201 search($namespaces, $conf['datadir'], 'search_namespaces', $options, '');
/plugin/advanced/lang/en/config/
H A Dmain.txt5options of DokuWiki will be found in the ''conf/dokuwiki.php'' file. However this file contains th…
/plugin/firenews/HTMLTemplates/author/
H A Dauthor.css162 .text-options img {
165 .text-options {
/plugin/s5/ui/default/
H A Dslides.js98 list.options[list.length] = new Option(n + ' : ' + otext, n);
/plugin/s5/ui/dokuwiki/
H A Dslides.js98 list.options[list.length] = new Option(n + ' : ' + otext, n);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php66 * @param array|string $config OPTIONAL Additional config or DSN of options
273 * @param array $options array of query params to use for query. For possible options check es api
281 public function updateDocument($id, $data, $index, array $options = []): Response
308 $options += $docOptions;
321 $endpoint->setParams($options);
264 updateDocument($id, $data, $index, array $options = []) global() argument
H A DIndex.php159 * @param array $options Array of query params to use for query. For possible options check es api
169 public function updateDocuments(array $docs, array $options = []): ResponseSet
175 return $this->getClient()->updateDocuments($docs, $options);
185 * @param array $options Optional params
193 public function updateByQuery($query, AbstractScript $script, array $options = []): Response
203 $endpoint->setParams($options);
223 $options = $doc->getOptions(
239 $endpoint->setParams($options);
261 * @param array $options Arra
156 updateDocuments(array $docs, array $options = []) global() argument
176 updateByQuery($query, AbstractScript $script, array $options = []) global() argument
246 addDocuments(array $docs, array $options = []) global() argument
264 getDocument($id, array $options = []) global() argument
296 deleteById(string $id, array $options = []) global() argument
319 deleteByQuery($query, array $options = []) global() argument
409 create(array $args = [], $options = null) global() argument
465 createSearch($query = '', $options = null, BuilderInterface $builder = null) global() argument
477 search($query = '', $options = null, string $method = Request POST) global() argument
623 flush(array $options = []) global() argument
705 updateDocument($data, array $options = []) global() argument
[all...]
H A DSearch.php191 public function setOptions(array $options): self
195 foreach ($options as $key => $value) {
328 * @param array|int $options Limit or associative array of options (option=>value)
335 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
337 $this->setOptionsAndQuery($options, $query);
390 * @param array|int $options
394 public function setOptionsAndQuery($options = null, $query = ''): self
400 if (\is_int($options)) {
402 $this->getQuery()->setSize($options);
189 setOptions(array $options) global() argument
331 search($query = '', $options = null, string $method = Request POST) global() argument
386 setOptionsAndQuery($options = null, $query = '') global() argument
[all...]
H A DSnapshot.php97 * @param array $options optional settings for this snapshot
106 public function createSnapshot($repository, $name, $options = [], $waitForCompletion = false)
108 return $this->request($repository.'/'.$name, Request::PUT, $options, ['wait_for_completion' => $waitForCompletion]);
177 * @param array $options options for the restore operation
186 public function restoreSnapshot($repository, $name, $options = [], $waitForCompletion = false)
191 ->setBody($options)
90 createSnapshot($repository, $name, $options = [], $waitForCompletion = false) global() argument
156 restoreSnapshot($repository, $name, $options = [], $waitForCompletion = false) global() argument
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst30 argument. They now accept an associative array of options, including the
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionInterface.php78 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null); argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php62 private $options = []; variable in Elasticsearch\\Endpoints\\AbstractEndpoint
108 return $this->options;
255 // Extract out client options, then start transforming
266 $this->options['client'] = $params['client'];
269 $ignore = isset($this->options['client']['ignore']) ? $this->options['client']['ignore'] : null;
272 $this->options['client']['ignore'] = explode(",", $ignore);
274 $this->options['client']['ignore'] = $ignore;
276 $this->options['client']['ignore'] = [$ignore];
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DGuzzle.php56 $options = [
65 $options[RequestOptions::TIMEOUT] = $connection->getTimeout();
69 $options[RequestOptions::PROXY] = $proxy;
76 $res = $client->send($req, $options);

12345678910>>...61