Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / generate.plugin.migrate.process.yml
index a7f348797dd8ace489caf34bf625f45dde2a1230..1990ba01eddb99f5c92afe706ff66d6332ec4e3e 100644 (file)
@@ -1,9 +1,18 @@
 description: 'Generate a migrate process plugin'
 help: 'Creates new process plugin for the migration.'
+welcome: 'Welcome to the Drupal Migrate Process Plugin generator'
 options:
-  module: common.options.module
+  module: 'The Module name.'
   class: 'Plugin class name'
   plugin-id: 'Plugin id'
 questions:
+  module: 'Enter the module name'
   class: 'Enter the migration process plugin class name'
-  plugin-id: 'Enter the migration process plugin id'
\ No newline at end of file
+  plugin-id: 'Enter the migration process plugin id'
+examples:
+  - description: 'Generate a migration plugin process specifying the module name, the class and its id'
+    execution: |
+      drupal generate:plugin:migrate:process  \
+        --module="modulename"  \
+        --class="MigrationProcess"  \
+        --plugin-id="migrationprocess"