X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FGenerate%2FPluginMailCommand.php;fp=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FGenerate%2FPluginMailCommand.php;h=98a0dda18713c17cb9889f2e0b5178ada43af2bd;hp=48a47d0d6f859ba1b8405023294871b63b61fb98;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/drupal/console/src/Command/Generate/PluginMailCommand.php b/vendor/drupal/console/src/Command/Generate/PluginMailCommand.php index 48a47d0d6..98a0dda18 100644 --- a/vendor/drupal/console/src/Command/Generate/PluginMailCommand.php +++ b/vendor/drupal/console/src/Command/Generate/PluginMailCommand.php @@ -12,13 +12,10 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Drupal\Console\Command\Shared\ServicesTrait; use Drupal\Console\Command\Shared\ModuleTrait; -use Drupal\Console\Command\Shared\FormTrait; use Drupal\Console\Command\Shared\ConfirmationTrait; use Drupal\Console\Generator\PluginMailGenerator; -use Symfony\Component\Console\Command\Command; -use Drupal\Console\Core\Style\DrupalStyle; +use Drupal\Console\Core\Command\ContainerAwareCommand; use Drupal\Console\Extension\Manager; -use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait; use Drupal\Console\Core\Utils\StringConverter; use Drupal\Console\Utils\Validator; use Drupal\Console\Core\Utils\ChainQueue; @@ -28,13 +25,11 @@ use Drupal\Console\Core\Utils\ChainQueue; * * @package Drupal\Console\Command\Generate */ -class PluginMailCommand extends Command +class PluginMailCommand extends ContainerAwareCommand { use ServicesTrait; use ModuleTrait; - use FormTrait; use ConfirmationTrait; - use ContainerAwareCommandTrait; /** * @var Manager @@ -92,7 +87,12 @@ class PluginMailCommand extends Command ->setName('generate:plugin:mail') ->setDescription($this->trans('commands.generate.plugin.mail.description')) ->setHelp($this->trans('commands.generate.plugin.mail.help')) - ->addOption('module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module')) + ->addOption( + 'module', + null, + InputOption::VALUE_REQUIRED, + $this->trans('commands.common.options.module') + ) ->addOption( 'class', null, @@ -116,7 +116,7 @@ class PluginMailCommand extends Command null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, $this->trans('commands.common.options.services') - ); + )->setAliases(['gpm']); } /** @@ -124,15 +124,13 @@ class PluginMailCommand extends Command */ protected function execute(InputInterface $input, OutputInterface $output) { - $io = new DrupalStyle($input, $output); - - // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmGeneration - if (!$this->confirmGeneration($io)) { + // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmOperation + if (!$this->confirmOperation()) { return 1; } $module = $input->getOption('module'); - $class_name = $input->getOption('class'); + $class_name = $this->validator->validateClassName($input->getOption('class')); $label = $input->getOption('label'); $plugin_id = $input->getOption('plugin-id'); $services = $input->getOption('services'); @@ -140,27 +138,26 @@ class PluginMailCommand extends Command // @see use Drupal\Console\Command\Shared\ServicesTrait::buildServices $build_services = $this->buildServices($services); - $this->generator->generate($module, $class_name, $label, $plugin_id, $build_services); + $this->generator->generate([ + 'module' => $module, + 'class_name' => $class_name, + 'label' => $label, + 'plugin_id' => $plugin_id, + 'services' => $build_services, + ]); $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'discovery']); } 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); - } + $this->getModuleOption(); // --class option $class = $input->getOption('class'); if (!$class) { - $class = $io->ask( + $class = $this->getIo()->ask( $this->trans('commands.generate.plugin.mail.options.class'), 'HtmlFormatterMail', function ($class) { @@ -173,7 +170,7 @@ class PluginMailCommand extends Command // --label option $label = $input->getOption('label'); if (!$label) { - $label = $io->ask( + $label = $this->getIo()->ask( $this->trans('commands.generate.plugin.mail.options.label'), $this->stringConverter->camelCaseToHuman($class) ); @@ -183,7 +180,7 @@ class PluginMailCommand extends Command // --plugin-id option $pluginId = $input->getOption('plugin-id'); if (!$pluginId) { - $pluginId = $io->ask( + $pluginId = $this->getIo()->ask( $this->trans('commands.generate.plugin.mail.options.plugin-id'), $this->stringConverter->camelCaseToUnderscore($class) ); @@ -192,7 +189,7 @@ class PluginMailCommand extends Command // --services option // @see Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion - $services = $this->servicesQuestion($io); + $services = $this->servicesQuestion(); $input->setOption('services', $services); } }