This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console-en/translations/generate.plugin.migrate.process.yml
2018-11-23 12:29:20 +00:00

19 lines
705 B
YAML

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: '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'
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"