You are here

public function BaseField::__construct in Synonyms 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/Synonyms/Provider/BaseField.php \Drupal\synonyms\Plugin\Synonyms\Provider\BaseField::__construct()

BaseField constructor.

Overrides AbstractProvider::__construct

File

src/Plugin/Synonyms/Provider/BaseField.php, line 46

Class

BaseField
Provide synonyms from base fields.

Namespace

Drupal\synonyms\Plugin\Synonyms\Provider

Code

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