1 回答
TA贡献1796条经验 获得超10个赞
您不能将用户选择问题放在命令选项上...,而是必须使用带有 ChoiceQuestion 对象的帮助器的询问方法来
在你的指挥下
use Symfony\Component\Console\Question\ChoiceQuestion;
// ...
/**
* Basic configuration(s) for the command.
*/
protected function configure(): void
{
$this->setName('WiRo Workflow')
->setDescription('Sendet eine E-Mail an den Redakteur, wenn Inhaltselemente länger als 6 Monate nicht bearbeitet wurden')
->addArgument('mailFrom', InputArgument::REQUIRED, 'Absender-Adresse')
->addArgument('mailFromName', InputArgument::REQUIRED,'Absender-Name')
->addArgument('mailTo', InputArgument::OPTIONAL, 'Empfänger-Adresse (nur für Chefredakteure und Administratoren)')
->addOption('optionTV', null, InputOption::VALUE_OPTIONAL, 'Benachrichtigung an: Themenverantwortlicher')
->addOption('optionAdmin', null, InputOption::VALUE_NONE, 'admin')
->addOption('optionAdminAct', null, InputOption::VALUE_NONE, 'Benachrichtigung an: Chefredakteur und Administratoren (Aktualisierung)')
->addArgument('mailTimeToCheck', InputArgument::OPTIONAL, 'Anzahl Monate der Seiten, die zu prüfen sind:')
->addArgument('urlMandant', InputArgument::OPTIONAL, 'URL des Mandanten')
->addArgument('pageContact', InputArgument::OPTIONAL, 'Themenverantwortliche beziehen aus:')
->addArgument('rootPageID', InputArgument::OPTIONAL, 'Root-Page')
->addArgument('excludePages', InputArgument::OPTIONAL, 'Auszuschließende Seiten (Komma separierte Liste)')
->addArgument('mailSignature', InputArgument::OPTIONAL, 'Mail-Signatur');
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
//...
$helper = $this->getHelper('question');
$question = new ChoiceQuestion(
'Which colors do you like?',
['blue', 'red'],
0 // default is blue
);
$question->setErrorMessage('Color %s is invalid.');
$color = $helper->ask($input, $output, $question);
$output->writeln('You have just selected: ' . $color);
// doSomething with $color
return 0;
}
//...
- 1 回答
- 0 关注
- 90 浏览
添加回答
举报