Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Cache / ContextDebugCommand.php
diff --git a/vendor/drupal/console/src/Command/Cache/ContextDebugCommand.php b/vendor/drupal/console/src/Command/Cache/ContextDebugCommand.php
new file mode 100644 (file)
index 0000000..b14f849
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Cache\ContextDebugCommand.
+ */
+
+namespace Drupal\Console\Command\Cache;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+/**
+ * Class ContextDebugCommand.
+ *
+ * @package Drupal\Console\Command\Cache
+ */
+class ContextDebugCommand extends Command
+{
+    use ContainerAwareCommandTrait;
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('cache:context:debug')
+            ->setDescription($this->trans('commands.cache.context.debug.description'));
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+        $contextManager = $this->get('cache_contexts_manager');
+
+        $tableHeader = [
+            $this->trans('commands.cache.context.debug.messages.code'),
+            $this->trans('commands.cache.context.debug.messages.label'),
+            $this->trans('commands.cache.context.debug.messages.class'),
+        ];
+
+        $tableRows = [];
+
+        foreach ($contextManager->getAll() as $code) {
+            $context = $this->get('cache_context.'.$code);
+            $tableRows[] = [
+                $code,
+                $context->getLabel()->render(),
+                get_class($context),
+            ];
+        }
+
+        $io->table($tableHeader, $tableRows, 'compact');
+
+        return 0;
+    }
+}