Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / generate.plugin.skeleton.yml
1 description: 'Generate an implementation of a skeleton plugin'
2 help: 'The <info>"%s"</info> command helps you generate a skeleton plugin "%s".'
3 welcome: 'Welcome to the Drupal Skeleton Plugin generator'
4
5 options:
6   module: 'The Module name.'
7   plugin: 'The Plugin Id.'
8   class: 'Plugin class name'
9   services: 'Load services from the container.'
10 questions:
11   module: 'Enter the module name'
12   plugin: 'Enter the Plugin Id'
13   class: 'Enter the plugin class name'
14   services: 'Enter your service'
15 messages:
16   plugin-dont-exist: 'The plugin "%s" does not exist.'
17   plugin-generator-implemented: 'Plugin "%s" already has an advanced command generator, please use "%s"'
18 examples:
19   - description: 'Generate a plugin skeleton specifying module name, the plugin id and the class'
20     execution: |
21       drupal generate:plugin:skeleton  \
22         --module="modulename"  \
23         --plugin-id="link_relation_type"  \
24         --class="DefaultLinkRelationType"