Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Generate / PluginCKEditorButtonCommand.php
diff --git a/vendor/drupal/console/src/Command/Generate/PluginCKEditorButtonCommand.php b/vendor/drupal/console/src/Command/Generate/PluginCKEditorButtonCommand.php
new file mode 100644 (file)
index 0000000..e6091fd
--- /dev/null
@@ -0,0 +1,205 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Generate\PluginCKEditorButtonCommand.
+ */
+
+namespace Drupal\Console\Command\Generate;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Generator\PluginCKEditorButtonGenerator;
+use Drupal\Console\Command\Shared\ModuleTrait;
+use Drupal\Console\Command\Shared\ConfirmationTrait;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Console\Core\Utils\ChainQueue;
+use Drupal\Console\Extension\Manager;
+use Drupal\Console\Core\Utils\StringConverter;
+
+class PluginCKEditorButtonCommand extends Command
+{
+    use CommandTrait;
+    use ModuleTrait;
+    use ConfirmationTrait;
+
+
+    /**
+     * @var ChainQueue
+     */
+    protected $chainQueue;
+
+
+    /**
+ * @var PluginCKEditorButtonGenerator
+*/
+    protected $generator;
+
+    /**
+ * @var Manager
+*/
+    protected $extensionManager;
+
+    /**
+     * @var StringConverter
+     */
+    protected $stringConverter;
+
+
+    /**
+     * PluginCKEditorButtonCommand constructor.
+     *
+     * @param ChainQueue                    $chainQueue
+     * @param PluginCKEditorButtonGenerator $generator
+     * @param Manager                       $extensionManager
+     * @param StringConverter               $stringConverter
+     */
+    public function __construct(
+        ChainQueue $chainQueue,
+        PluginCKEditorButtonGenerator $generator,
+        Manager $extensionManager,
+        StringConverter $stringConverter
+    ) {
+        $this->chainQueue = $chainQueue;
+        $this->generator = $generator;
+        $this->extensionManager = $extensionManager;
+        $this->stringConverter = $stringConverter;
+        parent::__construct();
+    }
+
+    protected function configure()
+    {
+        $this
+            ->setName('generate:plugin:ckeditorbutton')
+            ->setDescription($this->trans('commands.generate.plugin.ckeditorbutton.description'))
+            ->setHelp($this->trans('commands.generate.plugin.ckeditorbutton.help'))
+            ->addOption(
+                'module',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.common.options.module')
+            )
+            ->addOption(
+                'class',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.plugin.ckeditorbutton.options.class')
+            )
+            ->addOption(
+                'label',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.plugin.ckeditorbutton.options.label')
+            )
+            ->addOption(
+                'plugin-id',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.plugin.ckeditorbutton.options.plugin-id')
+            )
+            ->addOption(
+                'button-name',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.plugin.ckeditorbutton.options.button-name')
+            )
+            ->addOption(
+                'button-icon-path',
+                '',
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.generate.plugin.ckeditorbutton.options.button-icon-path')
+            );
+    }
+
+    /**
+     * {@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');
+        $label = $input->getOption('label');
+        $plugin_id = $input->getOption('plugin-id');
+        $button_name = $input->getOption('button-name');
+        $button_icon_path = $input->getOption('button-icon-path');
+
+        $this
+            ->generator
+            ->generate($module, $class_name, $label, $plugin_id, $button_name, $button_icon_path);
+
+        $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'discovery'], false);
+    }
+
+    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.ckeditorbutton.questions.class'),
+                'DefaultCKEditorButton'
+            );
+            $input->setOption('class', $class_name);
+        }
+
+        // --label option
+        $label = $input->getOption('label');
+        if (!$label) {
+            $label = $io->ask(
+                $this->trans('commands.generate.plugin.ckeditorbutton.questions.label'),
+                $this->stringConverter->camelCaseToHuman($class_name)
+            );
+            $input->setOption('label', $label);
+        }
+
+        // --plugin-id option
+        $plugin_id = $input->getOption('plugin-id');
+        if (!$plugin_id) {
+            $plugin_id = $io->ask(
+                $this->trans('commands.generate.plugin.ckeditorbutton.questions.plugin-id'),
+                $this->stringConverter->camelCaseToLowerCase($label)
+            );
+            $input->setOption('plugin-id', $plugin_id);
+        }
+
+        // --button-name option
+        $button_name = $input->getOption('button-name');
+        if (!$button_name) {
+            $button_name = $io->ask(
+                $this->trans('commands.generate.plugin.ckeditorbutton.questions.button-name'),
+                $this->stringConverter->anyCaseToUcFirst($plugin_id)
+            );
+            $input->setOption('button-name', $button_name);
+        }
+
+        // --button-icon-path option
+        $button_icon_path = $input->getOption('button-icon-path');
+        if (!$button_icon_path) {
+            $button_icon_path = $io->ask(
+                $this->trans('commands.generate.plugin.ckeditorbutton.questions.button-icon-path'),
+                drupal_get_path('module', $module) . '/js/plugins/' . $plugin_id . '/images/icon.png'
+            );
+            $input->setOption('button-icon-path', $button_icon_path);
+        }
+    }
+}