Version 1
[yaffs-website] / vendor / drupal / console / src / Generator / PluginImageEffectGenerator.php
diff --git a/vendor/drupal/console/src/Generator/PluginImageEffectGenerator.php b/vendor/drupal/console/src/Generator/PluginImageEffectGenerator.php
new file mode 100644 (file)
index 0000000..fa56ef2
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Generator\PluginImageEffectGenerator.
+ */
+
+namespace Drupal\Console\Generator;
+
+use Drupal\Console\Core\Generator\Generator;
+use Drupal\Console\Extension\Manager;
+
+class PluginImageEffectGenerator extends Generator
+{
+    /**
+     * PluginImageEffectGenerator constructor.
+     *
+     * @param Manager $extensionManager
+     */
+    public function __construct(
+        Manager $extensionManager
+    ) {
+        $this->extensionManager = $extensionManager;
+    }
+
+    /**
+     * Generator Plugin Image Effect.
+     *
+     * @param string $module       Module name
+     * @param string $class_name   Plugin Class name
+     * @param string $plugin_label Plugin label
+     * @param string $plugin_id    Plugin id
+     * @param string $description  Plugin description
+     */
+    public function generate($module, $class_name, $label, $plugin_id, $description)
+    {
+        $parameters = [
+          'module' => $module,
+          'class_name' => $class_name,
+          'label' => $label,
+          'plugin_id' => $plugin_id,
+          'description' => $description,
+        ];
+
+        $this->renderFile(
+            'module/src/Plugin/ImageEffect/imageeffect.php.twig',
+            $this->extensionManager->getPluginPath($module, 'ImageEffect') .'/'.$class_name.'.php',
+            $parameters
+        );
+    }
+}