generate.configuration.update.yml in Update helper 8
console/translations/en/generate.configuration.update.yml
File
console/translations/en/generate.configuration.update.ymlView source
- description: 'Generate configuration update.'
- help: 'The <info>"%s"</info> command helps you generate configuration update and update hoot for it.'
- welcome: 'Welcome to the configuration update generator'
- options:
- module: 'The module name where the update definition will be saved and update hook generated'
- update-n: 'Update hook number'
- description: 'Description for update (will be used as comment for update hook)'
- include-modules: 'List of modules which configurations should be included in the update (empty for all)'
- from-active: 'Generate update from active configuration in database to configuration in Yml files'
- questions:
- module: 'Enter the module name where the update definition will be saved and update hook generated'
- update-n: 'Please provide the number for update hook to be added'
- description: 'Please enter a description text for update (will be used as comment for update hook)'
- include-modules: 'Provide a comma-separated list of modules which configurations should be included in update (empty for all)'
- defaults:
- description: 'Configuration update.'
- messages:
- success: 'Configuration update is successfully generated.'
- no-update: 'There are no configuration changes that should be exported for the update.'
- wrong-update-n: 'The update number "%s" is not valid'
- examples:
- - description: 'Example to generate a configuration update and update hook with update number "8001" in "update_helper" module'
- execution: |
- drupal generate:configuration:update \
- --module="update_helper" \
- --update-n="8001" \
- --description="Configuration update."