function WizardPluginBase::__construct

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::__construct()
  2. 8.9.x core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::__construct()
  3. 11.x core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\WizardPluginBase::__construct()

Constructs a WizardPluginBase 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

1 method overrides WizardPluginBase::__construct()
Node::__construct in core/modules/node/src/Plugin/views/wizard/Node.php
Node constructor.

File

core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php, line 146

Class

WizardPluginBase
Base class for Views wizard plugins.

Namespace

Drupal\views\Plugin\views\wizard

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeBundleInfoInterface $bundle_info_service, MenuParentFormSelectorInterface $parent_form_selector) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->bundleInfoService = $bundle_info_service;
  $this->base_table = $this->definition['base_table'];
  $this->parentFormSelector = $parent_form_selector;
  $entity_types = \Drupal::entityTypeManager()->getDefinitions();
  foreach ($entity_types as $entity_type_id => $entity_type) {
    if (in_array($this->base_table, [
      $entity_type->getBaseTable(),
      $entity_type->getDataTable(),
      $entity_type->getRevisionTable(),
      $entity_type->getRevisionDataTable(),
    ], TRUE)) {
      $this->entityType = $entity_type;
      $this->entityTypeId = $entity_type_id;
    }
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.