Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Multisite / DebugCommand.php
diff --git a/vendor/drupal/console/src/Command/Multisite/DebugCommand.php b/vendor/drupal/console/src/Command/Multisite/DebugCommand.php
new file mode 100644 (file)
index 0000000..00b1555
--- /dev/null
@@ -0,0 +1,97 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Site\DebugCommand.
+ */
+
+namespace Drupal\Console\Command\Multisite;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+/**
+ * Class SiteDebugCommand
+ *
+ * @package Drupal\Console\Command\Site
+ */
+class DebugCommand extends Command
+{
+    use CommandTrait;
+
+    protected $appRoot;
+
+    /**
+     * DebugCommand constructor.
+     *
+     * @param $appRoot
+     */
+    public function __construct($appRoot)
+    {
+        $this->appRoot = $appRoot;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function configure()
+    {
+        $this
+            ->setName('multisite:debug')
+            ->setDescription($this->trans('commands.multisite.debug.description'))
+            ->setHelp($this->trans('commands.multisite.debug.help'));
+        ;
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $sites = [];
+
+        $multiSiteFile = sprintf(
+            '%s/sites/sites.php',
+            $this->appRoot
+        );
+
+        if (file_exists($multiSiteFile)) {
+            include $multiSiteFile;
+        }
+
+        if (!$sites) {
+            $io->error(
+                $this->trans('commands.multisite.debug.messages.no-multisites')
+            );
+
+            return 1;
+        }
+
+        $io->info(
+            $this->trans('commands.multisite.debug.messages.site-format')
+        );
+
+        $tableHeader = [
+            $this->trans('commands.multisite.debug.messages.site'),
+            $this->trans('commands.multisite.debug.messages.directory'),
+        ];
+
+        $tableRows = [];
+        foreach ($sites as $site => $directory) {
+            $tableRows[] = [
+                $site,
+                $this->appRoot  . '/sites/' . $directory
+            ];
+        }
+
+        $io->table($tableHeader, $tableRows);
+
+        return 0;
+    }
+}