You are here

public function Node::__construct in Freelinking 8.3

Same name and namespace in other branches
  1. 4.0.x src/Plugin/freelinking/Node.php \Drupal\freelinking\Plugin\freelinking\Node::__construct()

Initialize method.

Parameters

array $configuration: The configuration array.

string $plugin_id: The plugin identifier.

array $plugin_definition: The plugin definition array.

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

Overrides PluginBase::__construct

File

src/Plugin/freelinking/Node.php, line 47

Class

Node
Node ID freelinking plugin.

Namespace

Drupal\freelinking\Plugin\freelinking

Code

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