Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 54) sorted by path

123

/dokuwiki/
H A DSECURITY.md11 You have multiple options on reporting vulnerabilities
/dokuwiki/bin/
H A Ddwpage.php21 * Register options and arguments on the given $options object
23 * @param Options $options
26 protected function setup(Options $options)
29 $options->registerOption(
34 $options->registerOption(
40 $options->setHelp(
46 $options->registerCommand(
54 $options->registerArgument(
60 $options
25 setup(Options $options) global() argument
152 main(Options $options) global() argument
[all...]
H A Dgittool.php19 * Register options and arguments on the given $options object
21 * @param Options $options
24 protected function setup(Options $options) argument
26 $options->setHelp(
33 $options->registerArgument(
39 $options->registerCommand(
44 $options->registerArgument(
51 $options->registerCommand(
56 $options
82 main(Options $options) global() argument
[all...]
H A Dindexer.php20 * Register options and arguments on the given $options object
22 * @param Options $options
25 protected function setup(Options $options) argument
27 $options->setHelp(
32 $options->registerOption(
37 $options->registerOption(
47 * Arguments and options have been parsed when this is run
49 * @param Options $options
52 protected function main(Options $options)
51 main(Options $options) global() argument
[all...]
H A Dplugin.php18 * Register options and arguments on the given $options object
20 * @param Options $options
23 protected function setup(Options $options)
25 $options->setHelp('Excecutes Plugin command line tools');
26 $options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', false);
32 * Arguments and options have been parsed when this is run
34 * @param Options $options argument
37 protected function main(Options $options)
40 $argv = $options
21 setup(Options $options) global() argument
[all...]
H A Drender.php25 * Register options and arguments on the given $options object
27 * @param Options $options
30 protected function setup(Options $options) argument
32 $options->setHelp(
39 $options->registerOption('renderer', 'The renderer mode to use. Defaults to xhtml', 'r', 'mode');
45 * Arguments and options have been parsed when this is run
47 * @param Options $options
51 protected function main(Options $options)
53 $renderer = $options
50 main(Options $options) global() argument
[all...]
H A Dstriplangs.php17 * Register options and arguments on the given $options object
19 * @param Options $options
22 protected function setup(Options $options) argument
25 $options->setHelp(
30 $options->registerOption(
36 $options->registerOption(
46 * Arguments and options have been parsed when this is run
48 * @param Options $options
51 protected function main(Options $options)
50 main(Options $options) global() argument
[all...]
H A Dwantedpages.php28 * Register options and arguments on the given $options object
30 * @param Options $options
33 protected function setup(Options $options) argument
35 $options->setHelp(
39 $options->registerArgument(
45 $options->registerOption(
52 $options->registerOption(
62 * Arguments and options have been parsed when this is run
64 * @param Options $options
66 main(Options $options) global() argument
[all...]
/dokuwiki/conf/
H A Dlocal.php.dist4 * Simply copy the options you want to change from dokuwiki.php
H A Dmysql.conf.php.example23 * options carefully, otherwise you won't be able to access you
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt422 There are additional [[doku>syntax_highlighting|advanced options]] available for syntax highlighting, such as highlighting lines or adding line numbers.
/dokuwiki/inc/Form/
H A DDropdownElement.php22 * @param array $options The available options
25 public function __construct($name, $options, $label = '') argument
29 $this->optGroups[''] = new OptGroup(null, $options);
34 * Add an `<optgroup>` and respective options
37 * @param array $options
41 public function addOptGroup($label, $options) argument
46 $this->optGroups[$label] = new OptGroup($label, $options);
55 * * the value being an array of options as defined in @param null|array $optGroups
57 * @see OptGroup::options()
91 options($options = null) global() argument
[all...]
H A DForm.php267 * @param array $options
272 public function addDropdown($name, $options, $label = '', $pos = -1) argument
274 return $this->addElement(new DropdownElement($name, $options, $label), $pos);
H A DOptGroup.php7 protected $options = []; variable in dokuwiki\\Form\\OptGroup
12 * @param array $options The available options
14 public function __construct($label, $options) argument
17 $this->options($options);
26 * @return string[] the values that have been set (options exist)
33 if (isset($this->options[$value])) {
42 * Get or set the options of the optgroup
54 * @param null|array $options
57 options($options = null) global() argument
[all...]
/dokuwiki/inc/Remote/
H A DApiCore.php759 $options = [
768 search($data, $conf['mediadir'], 'search_media', $options, $dir);
425 listAttachments($ns, $options = array()) global() argument
/dokuwiki/inc/Ui/
H A DPageDiff.php310 $options = ['sidebyside' => $lang['diff_side'], 'inline' => $lang['diff_inline']];
311 $input = $form->addDropdown('difftype', $options, $lang['diff_type'])
356 // build options for dropdown selector
420 * prepare options for dropdwon selector
432 $options = [];
443 $options[$rev] = [
455 $options[$rev]['attrs']['disabled'] = 'disabled';
458 return $options; argument
465 * @params array $options dropdown options
[all...]
H A DRecent.php219 $options = [
224 $form->addDropdown('show_changes', $options, $lang['changes_type'])
H A DSearch.php102 $options = [
124 $searchForm->addHTML($options[$activeOption]['label']);
127 // render options list
130 foreach ($options as $key => $option) {
215 $options = [
240 foreach ($options as $key => $option) {
246 $options = array_merge(['custom' => [
248 ]], $options);
257 $searchForm->addHTML($options[$activeOption]['label']);
260 // render options lis
[all...]
/dokuwiki/inc/
H A Dform.php644 $options = array();
649 $options[] = array($val, $text, (!is_null($selected) && $val == $selected));
657 $options[] = array($val, $text, $val === $selected);
660 $elem = array('_elem' => 'menufield', '_options' => $options, '_text' => $label, '_class' => $class,
690 $options = array();
700 $options[] = array($val, $text, in_array($val, $selected));
710 $options[] = array($val, $text, in_array($val, $selected), $disabled);
713 $elem = array('_elem' => 'listboxfield', '_options' => $options, '_text' => $label, '_class' => $class,
H A Dmedia.php831 * Prints options for the tab that displays a list of all files
844 'class' => 'options'
1790 $options = [
1798 Slika::run($file, $options)
H A Dparserutils.php245 * METADATA_RENDER_UNLIMITED (also combined with the previous two options),
786 function p_xhtml_cached_geshi($code, $language, $wrapper = 'pre', array $options = null)
794 $optionsmd5 = md5(serialize($options));
809 if ($options !== null) {
810 foreach ($options as $function => $params) {
795 p_xhtml_cached_geshi($code, $language, $wrapper = 'pre', array $options = null) global() argument
/dokuwiki/inc/lang/fr/
H A Drevisions.txt3 Voici les anciennes révisions de la page en cours. Pour les comparer, sélectionnez-les avec les cases à options. Pour revenir à une ancienne révision, affichez-la en cliquant sur son nom, puis cliquez sur le bo (…)
/dokuwiki/inc/parser/
H A Dhandler.php172 * Internal function for parsing highlight options. argument
173 * $options is parsed for key value pairs separated by commas.
178 * @param string $options space separated list of key-value pairs,
183 protected function parse_highlight_options($options)
186 preg_match_all('/(\w+(?:="[^"]*"))|(\w+(?:=[^\s]*))|(\w+[^=\s\]])(?:\s*)/', $options, $matches, PREG_SET_ORDER);
204 // Check for supported options
662 // Cut out variable options enclosed in []
663 preg_match('/\[.*\]/', $matches[0], $options);
664 if (!empty($options[0])) {
665 $matches[0] = str_replace($options[
[all...]
H A Dxhtml.php624 * @param array $options assoziative array with additional geshi options
626 public function file($text, $language = null, $filename = null, $options = null)
628 $this->_highlight('file', $text, $language, $filename, $options);
637 * @param array $options assoziative array with additional geshi options
639 public function code($text, $language = null, $filename = null, $options = null)
641 $this->_highlight('code', $text, $language, $filename, $options);
651 * @param array $options assoziative array with additional geshi options
577 file($text, $language = null, $filename = null, $options = null) global() argument
589 code($text, $language = null, $filename = null, $options = null) global() argument
603 _highlight($type, $text, $language = null, $filename = null, $options = null) global() argument
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUsers.php128 * Account control options
130 * @param array $options The options to convert to int
133 protected function accountControl($options) argument
137 if (is_array($options)) {
138 if (in_array("SCRIPT",$options)){ $val=$val+1; }
139 if (in_array("ACCOUNTDISABLE",$options)){ $val=$val+2; }
140 if (in_array("HOMEDIR_REQUIRED",$options)){ $val=$val+8; }
141 if (in_array("LOCKOUT",$options)){ $val=$val+16; }
142 if (in_array("PASSWD_NOTREQD",$options)){
[all...]

123