public function ContextReactionPluginBase::__construct in Context 8
Same name and namespace in other branches
- 8.4 src/ContextReactionPluginBase.php \Drupal\context\ContextReactionPluginBase::__construct()
- 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 13
Class
Namespace
Drupal\contextCode
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
}