You are here

public function EntityReferenceField::__construct in Synonyms 8

Same name in this branch
  1. 8 src/Plugin/Derivative/EntityReferenceField.php \Drupal\synonyms\Plugin\Derivative\EntityReferenceField::__construct()
  2. 8 src/Plugin/Synonyms/Provider/EntityReferenceField.php \Drupal\synonyms\Plugin\Synonyms\Provider\EntityReferenceField::__construct()
Same name and namespace in other branches
  1. 2.0.x src/Plugin/Synonyms/Provider/EntityReferenceField.php \Drupal\synonyms\Plugin\Synonyms\Provider\EntityReferenceField::__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 AbstractProvider::__construct

File

src/Plugin/Synonyms/Provider/EntityReferenceField.php, line 56

Class

EntityReferenceField
Provide synonyms from entity reference field type.

Namespace

Drupal\synonyms\Plugin\Synonyms\Provider

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityFieldManagerInterface $entity_field_manager, EntityTypeManagerInterface $entity_type_manager, Connection $database, ContainerInterface $container) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $container);
  $this->entityFieldManager = $entity_field_manager;
  $this->entityTypeManager = $entity_type_manager;
  $this->database = $database;
}