You are here

public function BootstrapLayoutsHandlerBase::__construct in Bootstrap Layouts 8.5

Same name and namespace in other branches
  1. 8.4 src/Plugin/BootstrapLayouts/BootstrapLayoutsHandlerBase.php \Drupal\bootstrap_layouts\Plugin\BootstrapLayouts\BootstrapLayoutsHandlerBase::__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

File

src/Plugin/BootstrapLayouts/BootstrapLayoutsHandlerBase.php, line 20

Class

BootstrapLayoutsHandlerBase
Class BootstrapLayoutsHandlerBase

Namespace

Drupal\bootstrap_layouts\Plugin\BootstrapLayouts

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, ContainerInterface $container = NULL) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  if (!isset($container)) {
    $container = \Drupal::getContainer();
  }
  $this
    ->setContainer($container);
}