You are here

public function IndexerBase::__construct in Drupal 7 to 8/9 Module Upgrader 8

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/IndexerBase.php, line 32

Class

IndexerBase
Base class for indexers.

Namespace

Drupal\drupalmoduleupgrader

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, DatabaseConnection $db, TargetInterface $target = NULL) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->db = $db;
  if ($target) {
    $this
      ->bind($target);
  }
}