You are here

public function GatherContentSubProcess::__construct in GatherContent 8.5

SubProcess constructor.

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 SubProcess::__construct

File

src/Plugin/migrate/process/GatherContentSubProcess.php, line 43

Class

GatherContentSubProcess
Perform custom value transformation.

Namespace

Drupal\gathercontent\Plugin\migrate\process

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, Connection $database, EntityTypeManagerInterface $entityTypeManager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->database = $database;
  $this->entityTypeManager = $entityTypeManager;
}