You are here

generate.configuration.update.yml in Update helper 8

console/translations/en/generate.configuration.update.yml

File

console/translations/en/generate.configuration.update.yml
View source
  1. description: 'Generate configuration update.'
  2. help: 'The <info>"%s"</info> command helps you generate configuration update and update hoot for it.'
  3. welcome: 'Welcome to the configuration update generator'
  4. options:
  5. module: 'The module name where the update definition will be saved and update hook generated'
  6. update-n: 'Update hook number'
  7. description: 'Description for update (will be used as comment for update hook)'
  8. include-modules: 'List of modules which configurations should be included in the update (empty for all)'
  9. from-active: 'Generate update from active configuration in database to configuration in Yml files'
  10. questions:
  11. module: 'Enter the module name where the update definition will be saved and update hook generated'
  12. update-n: 'Please provide the number for update hook to be added'
  13. description: 'Please enter a description text for update (will be used as comment for update hook)'
  14. include-modules: 'Provide a comma-separated list of modules which configurations should be included in update (empty for all)'
  15. defaults:
  16. description: 'Configuration update.'
  17. messages:
  18. success: 'Configuration update is successfully generated.'
  19. no-update: 'There are no configuration changes that should be exported for the update.'
  20. wrong-update-n: 'The update number "%s" is not valid'
  21. examples:
  22. - description: 'Example to generate a configuration update and update hook with update number "8001" in "update_helper" module'
  23. execution: |
  24. drupal generate:configuration:update \
  25. --module="update_helper" \
  26. --update-n="8001" \
  27. --description="Configuration update."