You are here

public function Parents::__construct in Content Synchronization 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/SyncNormalizerDecorator/Parents.php \Drupal\content_sync\Plugin\SyncNormalizerDecorator\Parents::__construct()

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/SyncNormalizerDecorator/Parents.php, line 24

Class

Parents
Plugin annotation @SyncNormalizerDecorator( id = "parents", name = @Translation("Parents"), )

Namespace

Drupal\content_sync\Plugin\SyncNormalizerDecorator

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