Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Generate / PluginViewsFieldCommand.php
diff --git a/vendor/drupal/console/src/Command/Generate/PluginViewsFieldCommand.php b/vendor/drupal/console/src/Command/Generate/PluginViewsFieldCommand.php
new file mode 100644 (file)
index 0000000..c0962a2
--- /dev/null
@@ -0,0 +1,182 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Generate\PluginViewsFieldCommand.
+ */
+
+namespace Drupal\Console\Command\Generate;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+use Drupal\Console\Generator\PluginViewsFieldGenerator;
+use Drupal\Console\Command\Shared\ModuleTrait;
+use Drupal\Console\Command\Shared\ConfirmationTrait;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Console\Extension\Manager;
+use Drupal\Console\Core\Utils\ChainQueue;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Utils\Site;
+use Drupal\Console\Core\Utils\StringConverter;
+
+/**
+ * Class PluginViewsFieldCommand
+ *
+ * @package Drupal\Console\Command\Generate
+ */
+class PluginViewsFieldCommand extends Command
+{
+    use ModuleTrait;
+    use ConfirmationTrait;
+    use CommandTrait;
+
+
+    /**
+ * @var Manager
+*/
+    protected $extensionManager;
+
+    /**
+ * @var PluginViewsFieldGenerator
+*/
+    protected $generator;
+
+    /**
+     * @var Site
+     */
+    protected $site;
+
+    /**
+     * @var StringConverter
+     */
+    protected $stringConverter;
+
+    /**
+     * @var ChainQueue
+     */
+    protected $chainQueue;
+
+    /**
+     * PluginViewsFieldCommand constructor.
+     *
+     * @param Manager                   $extensionManager
+     * @param PluginViewsFieldGenerator $generator
+     * @param Site                      $site
+     * @param StringConverter           $stringConverter
+     * @param ChainQueue                $chainQueue
+     */
+    public function __construct(
+        Manager $extensionManager,
+        PluginViewsFieldGenerator $generator,
+        Site $site,
+        StringConverter $stringConverter,
+        ChainQueue $chainQueue
+    ) {
+        $this->extensionManager = $extensionManager;
+        $this->generator = $generator;
+        $this->site = $site;
+        $this->stringConverter = $stringConverter;
+        $this->chainQueue = $chainQueue;
+        parent::__construct();
+    }
+
+    protected function configure()
+    {
+        $this
+            ->setName('generate:plugin:views:field')
+            ->setDescription($this->trans('commands.generate.plugin.views.field.description'))
+            ->setHelp($this->trans('commands.generate.plugin.views.field.help'))
+            ->addOption('module', '', InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module'))
+            ->addOption(
+                'class',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.plugin.views.field.options.class')
+            )
+            ->addOption(
+                'title',
+                '',
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.generate.plugin.views.field.options.title')
+            )
+            ->addOption(
+                'description',
+                '',
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.generate.plugin.views.field.options.description')
+            );
+    }
+
+    /**
+     * {@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;
+        }
+
+        $module = $input->getOption('module');
+        $class_name = $input->getOption('class');
+        $class_machine_name = $this->stringConverter->camelCaseToUnderscore($class_name);
+        $title = $input->getOption('title');
+        $description = $input->getOption('description');
+
+        $this->generator->generate($module, $class_machine_name, $class_name, $title, $description);
+
+        $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);
+        }
+
+        // --class option
+        $class_name = $input->getOption('class');
+        if (!$class_name) {
+            $class_name = $io->ask(
+                $this->trans('commands.generate.plugin.views.field.questions.class'),
+                'CustomViewsField'
+            );
+        }
+        $input->setOption('class', $class_name);
+
+        // --title option
+        $title = $input->getOption('title');
+        if (!$title) {
+            $title = $io->ask(
+                $this->trans('commands.generate.plugin.views.field.questions.title'),
+                $this->stringConverter->camelCaseToHuman($class_name)
+            );
+            $input->setOption('title', $title);
+        }
+
+        // --description option
+        $description = $input->getOption('description');
+        if (!$description) {
+            $description = $io->ask(
+                $this->trans('commands.generate.plugin.views.field.questions.description'),
+                $this->trans('commands.generate.plugin.views.field.questions.description_default')
+            );
+            $input->setOption('description', $description);
+        }
+    }
+
+    protected function createGenerator()
+    {
+        return new PluginViewsFieldGenerator();
+    }
+}