extensionManager = $extensionManager; $this->generator = $generator; $this->stringConverter = $stringConverter; $this->eventDispatcher = $eventDispatcher; $this->chainQueue = $chainQueue; parent::__construct(); } /** * {@inheritdoc} */ protected function configure() { $this ->setName('generate:event:subscriber') ->setDescription($this->trans('commands.generate.event.subscriber.description')) ->setHelp($this->trans('commands.generate.event.subscriber.description')) ->addOption('module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module')) ->addOption( 'name', null, InputOption::VALUE_OPTIONAL, $this->trans('commands.generate.service.options.name') ) ->addOption( 'class', null, InputOption::VALUE_OPTIONAL, $this->trans('commands.generate.service.options.class') ) ->addOption( 'events', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, $this->trans('commands.common.options.events') ) ->addOption( 'services', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, $this->trans('commands.common.options.services') ); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $io = new DrupalStyle($input, $output); // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmGeneration if (!$this->confirmGeneration($io)) { return 1; } $module = $input->getOption('module'); $name = $input->getOption('name'); $class = $input->getOption('class'); $events = $input->getOption('events'); $services = $input->getOption('services'); // @see Drupal\Console\Command\Shared\ServicesTrait::buildServices $buildServices = $this->buildServices($services); $this->generator->generate($module, $name, $class, $events, $buildServices); $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'all']); } /** * {@inheritdoc} */ protected function interact(InputInterface $input, OutputInterface $output) { $io = new DrupalStyle($input, $output); // --module option $module = $input->getOption('module'); if (!$module) { // @see Drupal\Console\Command\Shared\ModuleTrait::moduleQuestion $module = $this->moduleQuestion($io); $input->setOption('module', $module); } // --service-name option $name = $input->getOption('name'); if (!$name) { $name = $io->ask( $this->trans('commands.generate.service.questions.service-name'), sprintf('%s.default', $module) ); $input->setOption('name', $name); } // --class option $class = $input->getOption('class'); if (!$class) { $class = $io->ask( $this->trans('commands.generate.event.subscriber.questions.class'), 'DefaultSubscriber' ); $input->setOption('class', $class); } // --events option $events = $input->getOption('events'); if (!$events) { // @see Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion $events = $this->eventsQuestion($io); $input->setOption('events', $events); } // --services option $services = $input->getOption('services'); if (!$services) { // @see Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion $services = $this->servicesQuestion($io); $input->setOption('services', $services); } } }