You are here

public function PluginBase::__construct in Drupal 8

Same name in this branch
  1. 8 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::__construct()
  2. 8 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::__construct()
Same name and namespace in other branches
  1. 9 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.

75 calls to PluginBase::__construct()
BlockPluginId::__construct in core/modules/block/src/Plugin/migrate/process/BlockPluginId.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
BlockRegion::__construct in core/modules/block/src/Plugin/migrate/process/BlockRegion.php
Constructs a BlockRegion plugin instance.
BlockTheme::__construct in core/modules/block/src/Plugin/migrate/process/BlockTheme.php
Constructs a BlockTheme object.
BlockVisibility::__construct in core/modules/block/src/Plugin/migrate/process/BlockVisibility.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
BreakLockLink::__construct in core/lib/Drupal/Core/TempStore/Element/BreakLockLink.php
Constructs a new BreakLockLink.

... See full list

78 methods override PluginBase::__construct()
BlockPluginId::__construct in core/modules/block/src/Plugin/migrate/process/BlockPluginId.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
BlockRegion::__construct in core/modules/block/src/Plugin/migrate/process/BlockRegion.php
Constructs a BlockRegion plugin instance.
BlockTheme::__construct in core/modules/block/src/Plugin/migrate/process/BlockTheme.php
Constructs a BlockTheme object.
BlockVisibility::__construct in core/modules/block/src/Plugin/migrate/process/BlockVisibility.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
BreakLockLink::__construct in core/lib/Drupal/Core/TempStore/Element/BreakLockLink.php
Constructs a new BreakLockLink.

... See full list

File

core/lib/Drupal/Component/Plugin/PluginBase.php, line 53

Class

PluginBase
Base class for plugins wishing to support metadata inspection.

Namespace

Drupal\Component\Plugin

Code

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);
  }
}