You are here

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

PropertyComment 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.

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

Overrides PluginBase::__construct

3 calls to UserMergePropertyBase::__construct()
PropertyEntityReference::__construct in src/Plugin/UserMerge/Property/PropertyEntityReference.php
PropertyComment constructor.
PropertyFlag::__construct in src/Plugin/UserMerge/Property/PropertyFlag.php
PropertyComment constructor.
PropertyNode::__construct in src/Plugin/UserMerge/Property/PropertyNode.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
3 methods override UserMergePropertyBase::__construct()
PropertyEntityReference::__construct in src/Plugin/UserMerge/Property/PropertyEntityReference.php
PropertyComment constructor.
PropertyFlag::__construct in src/Plugin/UserMerge/Property/PropertyFlag.php
PropertyComment constructor.
PropertyNode::__construct in src/Plugin/UserMerge/Property/PropertyNode.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/Plugin/UserMerge/Property/UserMergePropertyBase.php, line 36

Class

UserMergePropertyBase
Class UserMergePropertyBase.

Namespace

Drupal\usermerge\Plugin\UserMerge\Property

Code

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