You are here

public function PropertyNode::__construct in User Merge 2.x

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.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\Database\Connection $connection: The database connection.

Overrides UserMergePropertyBase::__construct

File

src/Plugin/UserMerge/Property/PropertyNode.php, line 48

Class

PropertyNode
Class PropertyNode.

Namespace

Drupal\usermerge\Plugin\UserMerge\Property

Code

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