Version 1
[yaffs-website] / vendor / drupal / console / src / Generator / PluginTypeYamlGenerator.php
diff --git a/vendor/drupal/console/src/Generator/PluginTypeYamlGenerator.php b/vendor/drupal/console/src/Generator/PluginTypeYamlGenerator.php
new file mode 100644 (file)
index 0000000..8dd2807
--- /dev/null
@@ -0,0 +1,74 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Generator\PluginTypeYamlGenerator.
+ */
+
+namespace Drupal\Console\Generator;
+
+use Drupal\Console\Core\Generator\Generator;
+use Drupal\Console\Extension\Manager;
+
+class PluginTypeYamlGenerator extends Generator
+{
+    /**
+     * @var Manager
+     */
+    protected $extensionManager;
+
+    /**
+     * PluginTypeYamlGenerator constructor.
+     *
+     * @param Manager $extensionManager
+     */
+    public function __construct(
+        Manager $extensionManager
+    ) {
+        $this->extensionManager = $extensionManager;
+    }
+
+    /**
+     * Generator for Plugin type with Yaml discovery.
+     *
+     * @param $module
+     * @param $plugin_class
+     * @param $plugin_name
+     * @param $plugin_file_name
+     */
+    public function generate($module, $plugin_class, $plugin_name, $plugin_file_name)
+    {
+        $parameters = [
+            'module' => $module,
+            'plugin_class' => $plugin_class,
+            'plugin_name' => $plugin_name,
+            'plugin_file_name' => $plugin_file_name,
+            'file_exists' => file_exists($this->extensionManager->getModule($module)->getPath()  . '/' . $module . '.services.yml'),
+        ];
+
+        $this->renderFile(
+            'module/src/yaml-plugin-manager.php.twig',
+            $this->extensionManager->getModule($module)->getSourcePath() . '/' . $plugin_class . 'Manager.php',
+            $parameters
+        );
+
+        $this->renderFile(
+            'module/src/yaml-plugin-manager-interface.php.twig',
+            $this->extensionManager->getModule($module)->getSourcePath() . '/' . $plugin_class . 'ManagerInterface.php',
+            $parameters
+        );
+
+        $this->renderFile(
+            'module/plugin-yaml-services.yml.twig',
+            $this->extensionManager->getModule($module)->getPath() . '/' . $module . '.services.yml',
+            $parameters,
+            FILE_APPEND
+        );
+
+        $this->renderFile(
+            'module/plugin.yml.twig',
+            $this->extensionManager->getModule($module)->getPath() . '/' . $module . '.' . $plugin_file_name . '.yml',
+            $parameters
+        );
+    }
+}