interface PluginInspectionInterface in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/PluginInspectionInterface.php \Drupal\Component\Plugin\PluginInspectionInterface
Plugin interface for providing some metadata inspection.
This interface provides some simple tools for code receiving a plugin to interact with the plugin system.
Hierarchy
- interface \Drupal\Component\Plugin\PluginInspectionInterface
Expanded class hierarchy of PluginInspectionInterface
All classes that implement PluginInspectionInterface
Related topics
27 files declare their use of PluginInspectionInterface
- ActionInterface.php in core/
lib/ Drupal/ Core/ Action/ ActionInterface.php - Contains \Drupal\Core\Action\ActionInterface.
- BlockPluginInterface.php in core/
lib/ Drupal/ Core/ Block/ BlockPluginInterface.php - Contains \Drupal\Core\Block\BlockPluginInterface.
- CKEditorPluginInterface.php in core/
modules/ ckeditor/ src/ CKEditorPluginInterface.php - Contains \Drupal\ckeditor\CKEditorPluginInterface.
- ConditionInterface.php in core/
lib/ Drupal/ Core/ Condition/ ConditionInterface.php - Contains \Drupal\Core\Condition\ConditionInterface.
- EditorPluginInterface.php in core/
modules/ editor/ src/ Plugin/ EditorPluginInterface.php - Contains \Drupal\editor\Plugin\EditorPluginInterface.
File
- core/
lib/ Drupal/ Component/ Plugin/ PluginInspectionInterface.php, line 17 - Contains \Drupal\Component\Plugin\PluginInspectionInterface.
Namespace
Drupal\Component\PluginView source
interface PluginInspectionInterface {
/**
* Gets the plugin_id of the plugin instance.
*
* @return string
* The plugin_id of the plugin instance.
*/
public function getPluginId();
/**
* Gets the definition of the plugin implementation.
*
* @return array
* The plugin definition, as returned by the discovery object used by the
* plugin manager.
*/
public function getPluginDefinition();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginInspectionInterface:: |
public | function | Gets the definition of the plugin implementation. | 2 |
PluginInspectionInterface:: |
public | function | Gets the plugin_id of the plugin instance. | 2 |