Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console-en / translations / plugin.debug.yml
1 description: 'Display all plugin types.'
2 help: |
3   Display all plugin types, plugin instances of a specific type, or the definition for a specific plugin.
4
5   List all plugin types:
6   <info>drupal plugin:debug</info>
7
8   List all instances of the image effect plugin type:
9   <info>drupal plugin:debug image.effect</info>
10
11   Show the definition for the image convert plugin:
12   <info>drupal plugin:debug image.effect image_convert</info>
13
14   <comment>NOTE: Only plugin types exposed through services are supported.</comment> When developing a custom plugin type, expose it as a service by adding it to modulename.services.yml with the name "plugin.manager.PLUGIN_TYPE".
15 arguments:
16     type: 'Plugin type'
17     id: 'Plugin ID'
18 errors:
19     plugin-type-not-found: 'Plugin type "%s" not found. No service available for that type.'
20 table-headers:
21     plugin-type-name: 'Plugin type'
22     plugin-type-class: 'Plugin manager class'
23     plugin-id: 'Plugin ID'
24     plugin-class: 'Plugin class'
25     definition-key: 'Key'
26     definition-value: 'Value'