You are here

class Plugin8A in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_annotation_discovery/tests/modules/service_container_annotation_discovery_subtest/src/Plugin/Plugin8/Plugin8A/Plugin8A.php \Drupal\service_container_annotation_discovery_subtest\Plugin\Plugin8\Plugin8A\Plugin8A

Class Plugin8A

@Plugin( id = "Plugin8A", label = "Label Plugin8A", arguments = { "@messenger" } )

@package Drupal\service_container_annotation_discovery_subtest\Plugin\Plugin8\Plugin8A

Hierarchy

Expanded class hierarchy of Plugin8A

File

modules/providers/service_container_annotation_discovery/tests/modules/service_container_annotation_discovery_subtest/src/Plugin/Plugin8/Plugin8A/Plugin8A.php, line 23

Namespace

Drupal\service_container_annotation_discovery_subtest\Plugin\Plugin8\Plugin8A
View source
class Plugin8A 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

Namesort descending Modifiers Type Description Overrides
Plugin8A::$messenger protected property
Plugin8A::getMessenger public function
Plugin8A::__construct public function Constructs a Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct
PluginBase::$configuration protected property Configuration information passed into the plugin.
PluginBase::$pluginDefinition protected property The plugin implementation definition.
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId