You are here

public function Field::__construct in Synonyms 2.0.x

Same name in this branch
  1. 2.0.x src/Plugin/Derivative/Field.php \Drupal\synonyms\Plugin\Derivative\Field::__construct()
  2. 2.0.x src/Plugin/Synonyms/Provider/Field.php \Drupal\synonyms\Plugin\Synonyms\Provider\Field::__construct()
Same name and namespace in other branches
  1. 8 src/Plugin/Synonyms/Provider/Field.php \Drupal\synonyms\Plugin\Synonyms\Provider\Field::__construct()

Field constructor.

Overrides AbstractProvider::__construct

File

src/Plugin/Synonyms/Provider/Field.php, line 59

Class

Field
Provide synonyms from attached simple fields.

Namespace

Drupal\synonyms\Plugin\Synonyms\Provider

Code

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