Security update for Core, with self-updated composer
[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 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'
27 examples:
28     - description: 'Displays a list with all the plugins on the current site'
29       execution: |
30         drupal debug:plugin
31     - description: 'Displays block plugin information'
32       execution: |
33         drupal debug:plugin block
34     - description: 'Displays block broken information'
35       execution: |
36         drupal debug:plugin block broken