Home
last modified time | relevance | path

Searched refs:registerArgument (Results 1 – 8 of 8) sorted by last modified time

/dokuwiki/lib/plugins/usermanager/
H A Dcli.php33 $options->registerArgument('login', 'Username', true, 'add');
34 $options->registerArgument('mail', 'Email address', true, 'add');
35 $options->registerArgument('name', 'Full name', false, 'add');
36 $options->registerArgument('groups', 'Groups to be added, comma-seperated', false, 'add');
37 $options->registerArgument('password', 'Password to set', false, 'add');
42 $options->registerArgument('name', 'Username(s), comma-seperated', true, 'delete');
46 $options->registerArgument('name', 'Username', true, 'addtogroup');
47 $options->registerArgument('group', 'Group(s), comma-seperated', true, 'addtogroup');
51 $options->registerArgument('name', 'Username', true, 'removefromgroup');
52 $options->registerArgument('grou
[all...]
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md65 - ``$options->registerArgument()`` adds an argument
/dokuwiki/lib/plugins/extension/
H A Dcli.php37 $options->registerArgument('query', 'The keyword(s) to search for', true, 'search');
49 $options->registerArgument(
58 $options->registerArgument('extensions...', 'One or more extensions to install', true, 'uninstall');
62 $options->registerArgument('extensions...', 'One or more extensions to enable', true, 'enable');
66 $options->registerArgument('extensions...', 'One or more extensions to disable', true, 'disable');
/dokuwiki/bin/
H A Ddwpage.php54 $options->registerArgument(
60 $options->registerArgument(
73 $options->registerArgument(
79 $options->registerArgument(
105 $options->registerArgument(
117 $options->registerArgument(
129 $options->registerArgument(
135 $options->registerArgument(
H A Dwantedpages.php39 $options->registerArgument(
H A Dgittool.php33 $options->registerArgument(
44 $options->registerArgument(
56 $options->registerArgument(
H A Dplugin.php26 $options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', false);
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php115 public function registerArgument($arg, $help, $required = true, $command = '') function in splitbrain\\phpcli\\Options