Plugin interface for providing some metadata inspection.
This interface provides some simple tools for code recieving a plugin to interact with the plugin system.
Expanded class hierarchy of PluginInspectionInterface
All classes that implement PluginInspectionInterface
interface PluginInspectionInterface {
/**
* Returns the plugin_id of the plugin instance.
*
* @return string
* The plugin_id of the plugin instance.
*/
public function getPluginId();
/**
* Returns 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();
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginInspectionInterface:: |
public | function | Returns the definition of the plugin implementation. | 1 |
PluginInspectionInterface:: |
public | function | Returns the plugin_id of the plugin instance. | 1 |