8553725ed5abb6f4e10db39bb0f3806c4105942a
[yaffs-website] / vendor / drupal / console-en / translations / debug.plugin.yml
1 description: 'Displays 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 debug:plugin</info>
7
8   List all instances of the image effect plugin type:
9   <info>drupal debug:plugin image.effect</info>
10
11   Show the definition for the image convert plugin:
12   <info>drupal debug:plugin 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 messages:
21     plugin-info: 'Plugin additional information'
22 table-headers:
23     plugin-type-name: 'Plugin type'
24     plugin-type-class: 'Plugin manager class'
25     plugin-id: 'Plugin ID'
26     plugin-class: 'Plugin class'
27     definition-key: 'Key'
28     definition-value: 'Value'
29     setting: 'Setting'
30 examples:
31     - description: 'Displays a list with all the plugins on the current site'
32       execution: |
33         drupal debug:plugin
34     - description: 'Displays block plugin information'
35       execution: |
36         drupal debug:plugin block
37     - description: 'Displays block broken information'
38       execution: |
39         drupal debug:plugin block broken