function PluginBase::__construct
Same name in this branch
- 8.9.x core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::__construct()
Same name in other branches
- 9 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::__construct()
- 9 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::__construct()
- 10 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::__construct()
- 10 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::__construct()
- 11.x core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::__construct()
- 11.x core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::__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.
6 calls to PluginBase::__construct()
- ConfigurablePlugin::__construct in core/
tests/ Drupal/ Tests/ Core/ Plugin/ DefaultSingleLazyPluginCollectionTest.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- ContextAwarePluginBase::__construct in core/
lib/ Drupal/ Component/ Plugin/ ContextAwarePluginBase.php - Overrides \Drupal\Component\Plugin\PluginBase::__construct().
- LocalActionDefault::__construct in core/
lib/ Drupal/ Core/ Menu/ LocalActionDefault.php - Constructs a LocalActionDefault object.
- MockUserLoginBlock::__construct in core/
modules/ system/ tests/ modules/ plugin_test/ src/ Plugin/ plugin_test/ mock_block/ MockUserLoginBlock.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- UnapprovedComments::__construct in core/
modules/ comment/ src/ Plugin/ Menu/ LocalTask/ UnapprovedComments.php - Construct the UnapprovedComments object.
6 methods override PluginBase::__construct()
- ConfigurablePlugin::__construct in core/
tests/ Drupal/ Tests/ Core/ Plugin/ DefaultSingleLazyPluginCollectionTest.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- ContextAwarePluginBase::__construct in core/
lib/ Drupal/ Component/ Plugin/ ContextAwarePluginBase.php - Overrides \Drupal\Component\Plugin\PluginBase::__construct().
- LocalActionDefault::__construct in core/
lib/ Drupal/ Core/ Menu/ LocalActionDefault.php - Constructs a LocalActionDefault object.
- MockUserLoginBlock::__construct in core/
modules/ system/ tests/ modules/ plugin_test/ src/ Plugin/ plugin_test/ mock_block/ MockUserLoginBlock.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- UnapprovedComments::__construct in core/
modules/ comment/ src/ Plugin/ Menu/ LocalTask/ UnapprovedComments.php - Construct the UnapprovedComments object.
File
-
core/
lib/ Drupal/ Component/ Plugin/ PluginBase.php, line 53
Class
- PluginBase
- Base class for plugins wishing to support metadata inspection.
Namespace
Drupal\Component\PluginCode
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
$this->configuration = $configuration;
$this->pluginId = $plugin_id;
$this->pluginDefinition = $plugin_definition;
if ($this instanceof ConfigurablePluginInterface && !$this instanceof ConfigurableInterface) {
@trigger_error('Drupal\\Component\\Plugin\\ConfigurablePluginInterface is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. You should implement ConfigurableInterface and/or DependentPluginInterface directly as needed. If you implement ConfigurableInterface you may choose to implement ConfigurablePluginInterface in Drupal 8 as well for maximum compatibility, however this must be removed prior to Drupal 9. See https://www.drupal.org/node/2946161', E_USER_DEPRECATED);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.