Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Generate / ModuleFileCommand.php
diff --git a/vendor/drupal/console/src/Command/Generate/ModuleFileCommand.php b/vendor/drupal/console/src/Command/Generate/ModuleFileCommand.php
new file mode 100644 (file)
index 0000000..33bdf7e
--- /dev/null
@@ -0,0 +1,110 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Generate\ModuleFileCommand.
+ */
+
+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\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Generator\ModuleFileGenerator;
+use Drupal\Console\Command\Shared\ConfirmationTrait;
+use Drupal\Console\Command\Shared\ModuleTrait;
+use Drupal\Console\Extension\Manager;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+/**
+ * Class ModuleFileCommand
+ *
+ * @package Drupal\Console\Command\Generate
+ */
+class ModuleFileCommand extends Command
+{
+    use CommandTrait;
+    use ConfirmationTrait;
+    use ModuleTrait;
+
+    /**
+ * @var Manager
+*/
+    protected $extensionManager;
+
+    /**
+ * @var ModuleFileGenerator
+*/
+    protected $generator;
+
+
+    /**
+     * ModuleFileCommand constructor.
+     *
+     * @param Manager             $extensionManager
+     * @param ModuleFileGenerator $generator
+     */
+    public function __construct(
+        Manager $extensionManager,
+        ModuleFileGenerator $generator
+    ) {
+        $this->extensionManager = $extensionManager;
+        $this->generator = $generator;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('generate:module:file')
+            ->setDescription($this->trans('commands.generate.module.file.description'))
+            ->setHelp($this->trans('commands.generate.module.file.help'))
+            ->addOption('module', '', InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module'));
+    }
+
+    /**
+     * {@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, $yes)) {
+            return;
+        }
+
+        $machine_name =  $input->getOption('module');
+        $file_path =  $this->extensionManager->getModule($machine_name)->getPath();
+        $generator = $this->generator;
+
+        $generator->generate(
+            $machine_name,
+            $file_path
+        );
+    }
+
+
+    /**
+     * {@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);
+    }
+}