本文整理汇总了PHP中OC\Core\Command\Base::configure方法的典型用法代码示例。如果您正苦于以下问题:PHP Base::configure方法的具体用法?PHP Base::configure怎么用?PHP Base::configure使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OC\Core\Command\Base
的用法示例。
在下文中一共展示了Base::configure方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: configure
protected function configure() {
parent::configure();
$this
->setName('config:system:set')
->setDescription('Set a system config value')
->addArgument(
'name',
InputArgument::REQUIRED,
'Name of the config to set'
)
->addOption(
'value',
null,
InputOption::VALUE_REQUIRED,
'The new value of the config'
)
->addOption(
'update-only',
null,
InputOption::VALUE_NONE,
'Only updates the value, if it is not set before, it is not being added'
)
;
}
示例2: configure
protected function configure()
{
parent::configure();
$this->setName('twofactorauth:enable');
$this->setDescription('Enable two-factor authentication for a user');
$this->addArgument('uid', InputArgument::REQUIRED);
}
示例3: configure
protected function configure() {
parent::configure();
$this
->setName('config:system:delete')
->setDescription('Delete a system config value')
->addArgument(
'name',
InputArgument::REQUIRED,
'Name of the config to delete'
)
->addOption(
'error-if-not-exists',
null,
InputOption::VALUE_NONE,
'Checks whether the config exists before deleting it'
)
;
}
示例4: configure
protected function configure() {
parent::configure();
$this
->setName('config:list')
->setDescription('List all configs')
->addArgument(
'app',
InputArgument::OPTIONAL,
'Name of the app ("system" to get the config.php values, "all" for all apps and system)',
'all'
)
->addOption(
'private',
null,
InputOption::VALUE_NONE,
'Use this option when you want to include sensitive configs like passwords, salts, ...'
)
;
}
示例5: configure
protected function configure()
{
$this->setName('files_external:backends')->setDescription('Show available authentication and storage backends')->addArgument('type', InputArgument::OPTIONAL, 'only show backends of a certain type. Possible values are "authentication" or "storage"')->addArgument('backend', InputArgument::OPTIONAL, 'only show information of a specific backend');
parent::configure();
}
示例6: configure
protected function configure()
{
$this->setName('files_external:list')->setDescription('List configured mounts')->addArgument('user_id', InputArgument::OPTIONAL, 'user id to list the personal mounts for, if no user is provided admin mounts will be listed')->addOption('show-password', null, InputOption::VALUE_NONE, 'show passwords and secrets')->addOption('full', null, InputOption::VALUE_NONE, 'don\'t truncate long values in table output');
parent::configure();
}
示例7: configure
protected function configure()
{
parent::configure();
$this->setName('app:getpath')->setDescription('Get an absolute path to the app directory')->addArgument('app', InputArgument::REQUIRED, 'Name of the app');
}
示例8: configure
protected function configure()
{
$this->setName('security:certificates')->setDescription('list trusted certificates');
parent::configure();
}
示例9: configure
protected function configure()
{
parent::configure();
$this->setName('app:list')->setDescription('List all available apps')->addOption('shipped', null, InputOption::VALUE_REQUIRED, 'true - limit to shipped apps only, false - limit to non-shipped apps only');
}
示例10: configure
protected function configure()
{
parent::configure();
$this->setName('status')->setDescription('show some status information');
}
示例11: configure
protected function configure()
{
$this->setName('files_external:create')->setDescription('Create a new mount configuration')->addOption('user', null, InputOption::VALUE_OPTIONAL, 'user to add the mount configuration for, if not set the mount will be added as system mount')->addArgument('mount_point', InputArgument::REQUIRED, 'mount point for the new mount')->addArgument('storage_backend', InputArgument::REQUIRED, 'storage backend identifier for the new mount, see `occ files_external:backends` for possible values')->addArgument('authentication_backend', InputArgument::REQUIRED, 'authentication backend identifier for the new mount, see `occ files_external:backends` for possible values')->addOption('config', 'c', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Mount configuration option in key=value format')->addOption('dry', null, InputOption::VALUE_NONE, 'Don\'t save the created mount, only list the new mount');
parent::configure();
}
示例12: configure
protected function configure()
{
$this->setName('files_external:applicable')->setDescription('Manage applicable users and groups for a mount')->addArgument('mount_id', InputArgument::REQUIRED, 'The id of the mount to edit')->addOption('add-user', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'user to add as applicable')->addOption('remove-user', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'user to remove as applicable')->addOption('add-group', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'group to add as applicable')->addOption('remove-group', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'group to remove as applicable')->addOption('remove-all', null, InputOption::VALUE_NONE, 'Set the mount to be globally applicable');
parent::configure();
}
示例13: configure
protected function configure()
{
$this->setName('files_external:import')->setDescription('Import mount configurations')->addOption('user', null, InputOption::VALUE_OPTIONAL, 'user to add the mount configurations for, if not set the mount will be added as system mount')->addArgument('path', InputArgument::REQUIRED, 'path to a json file containing the mounts to import, use "-" to read from stdin')->addOption('dry', null, InputOption::VALUE_NONE, 'Don\'t save the imported mounts, only list the new mounts');
parent::configure();
}
示例14: configure
protected function configure()
{
parent::configure();
$this->setName('files:scan')->setDescription('rescan filesystem')->addArgument('user_id', InputArgument::OPTIONAL | InputArgument::IS_ARRAY, 'will rescan all files of the given user(s)')->addOption('path', 'p', InputArgument::OPTIONAL, 'limit rescan to this path, eg. --path="/alice/files/Music", the user_id is determined by the path and the user_id parameter and --all are ignored')->addOption('quiet', 'q', InputOption::VALUE_NONE, 'suppress any output')->addOption('verbose', '-v|vv|vvv', InputOption::VALUE_NONE, 'verbose the output')->addOption('all', null, InputOption::VALUE_NONE, 'will rescan all files of all known users')->addOption('unscanned', null, InputOption::VALUE_NONE, 'only scan files which are marked as not fully scanned');
}
示例15: configure
protected function configure()
{
$this->setName('files_external:config')->setDescription('Manage backend configuration for a mount')->addArgument('mount_id', InputArgument::REQUIRED, 'The id of the mount to edit')->addArgument('key', InputArgument::REQUIRED, 'key of the config option to set/get')->addArgument('value', InputArgument::OPTIONAL, 'value to set the config option to, when no value is provided the existing value will be printed');
parent::configure();
}