You are here

public function GatherContentGet::__construct in GatherContent 8.5

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/migrate/process/GatherContentGet.php, line 50

Class

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