class Plugin4A in Service Container 7.2
Same name and namespace in other branches
- 7 modules/providers/service_container_annotation_discovery/tests/modules/service_container_annotation_discovery_test/src/Plugin/Plugin4/Plugin4A/Plugin4A.php \Drupal\service_container_annotation_discovery_test\Plugin\Plugin4\Plugin4A\Plugin4A
Class Plugin4A
@Plugin( id = "Plugin4A", label = "Label Plugin4A", arguments = { "@messenger" } )
@package Drupal\service_container_annotation_discovery_test\Plugin\Plugin4\Plugin4A
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\service_container_annotation_discovery_test\Plugin\Plugin4\Plugin4A\Plugin4A
Expanded class hierarchy of Plugin4A
1 string reference to 'Plugin4A'
- ServiceContainerAnnotationDiscoveryIntegrationTest::testDoctrinePlugin in modules/
providers/ service_container_annotation_discovery/ lib/ Drupal/ service_container_annotation_discovery/ Tests/ ServiceContainerAnnotationDiscoveryIntegrationTest.php - Tests if plugins with annotations are available as services.
File
- modules/
providers/ service_container_annotation_discovery/ tests/ modules/ service_container_annotation_discovery_test/ src/ Plugin/ Plugin4/ Plugin4A/ Plugin4A.php, line 23
Namespace
Drupal\service_container_annotation_discovery_test\Plugin\Plugin4\Plugin4AView source
class Plugin4A extends PluginBase {
/**
* @var \Drupal\service_container\Messenger\MessengerInterface
*/
protected $messenger;
public function __construct($configuration, $plugin_id, $plugin_definition, MessengerInterface $messenger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->messenger = $messenger;
}
public function getMessenger() {
return $this->messenger;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Plugin4A:: |
protected | property | ||
Plugin4A:: |
public | function | ||
Plugin4A:: |
public | function |
Constructs a Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | |
PluginBase:: |
protected | property | The plugin implementation definition. | |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |