You are here

public function ContextReactionPluginBase::__construct in Context 8.4

Same name and namespace in other branches
  1. 8 src/ContextReactionPluginBase.php \Drupal\context\ContextReactionPluginBase::__construct()
  2. 8.0 src/ContextReactionPluginBase.php \Drupal\context\ContextReactionPluginBase::__construct()

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides PluginBase::__construct

4 calls to ContextReactionPluginBase::__construct()
Blocks::__construct in src/Plugin/ContextReaction/Blocks.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
Menu::__construct in src/Plugin/ContextReaction/Menu.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
Regions::__construct in src/Plugin/ContextReaction/Regions.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
Theme::__construct in src/Plugin/ContextReaction/Theme.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
4 methods override ContextReactionPluginBase::__construct()
Blocks::__construct in src/Plugin/ContextReaction/Blocks.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
Menu::__construct in src/Plugin/ContextReaction/Menu.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
Regions::__construct in src/Plugin/ContextReaction/Regions.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
Theme::__construct in src/Plugin/ContextReaction/Theme.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/ContextReactionPluginBase.php, line 16

Class

ContextReactionPluginBase
Provides a plugin base for Context Reactions.

Namespace

Drupal\context

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this
    ->setConfiguration($configuration);
}