f03b61eefe326671e5b22b252d2d543070e6c270
[yaffs-website] / vendor / drupal / console-en / translations / generate.plugin.imageeffect.yml
1 description: 'Generate image effect plugin.'
2 help: 'The <info>generate:plugin:imageeffect</info> command helps you generate a new image effect plugin.'
3 welcome: 'Welcome to the Drupal Image Effect Plugin generator'
4 options:
5   module: 'The Module name.'
6   class: 'Plugin class name'
7   label: 'Plugin label'
8   plugin-id: 'Plugin id'
9   description: 'Plugin Description'
10 questions:
11   module: 'Enter the module name'
12   class: 'Enter the plugin class name'
13   label: 'Enter the plugin label'
14   plugin-id: 'Enter the plugin id'
15   description: 'Enter the plugin Description'
16 suggestions:
17   my-image-effect: 'My Image Effect'
18 examples:
19   - description: 'Generate a image effect plugin specifying the module name, the class, its label, the plugin id and a description'
20     execution: |
21       drupal generate:plugin:imageeffect  \
22         --module="modulename"  \
23         --class="DefaultImageEffect"  \
24         --label="Default image effect"  \
25         --plugin-id="default_image_effect"  \
26         --description="My Image Effect"