Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / generate.plugin.imageformatter.yml
1 description: 'Generate image formatter plugin.'
2 help: 'The <info>generate:plugin:imageformatter</info> command helps you generate a new image formatter plugin.'
3 welcome: 'Welcome to the Drupal Image Formatter Plugin generator'
4 options:
5   module: 'The Module name.'
6   class: 'Plugin class name'
7   label: 'Plugin label'
8   plugin-id: 'Plugin id'
9 questions:
10   module: 'Enter the module name'
11   class: 'Enter the plugin class name'
12   label: 'Enter the plugin label'
13   plugin-id: 'Enter the plugin id'
14 examples:
15   - description: 'Generate a image formatter plugin specifying the module name, the class, its label and the plugin id'
16     execution: |
17       drupal generate:plugin:imageformatter  \
18         --module="modulename"  \
19         --class="ExampleImageFormatter"  \
20         --label="Example image formatter"  \
21         --plugin-id="example_image_formatter"