You are here

public function Field::__construct in Synonyms 8

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

Field constructor.

File

src/Plugin/Derivative/Field.php, line 61

Class

Field
Derivative for synonyms provider plugins.

Namespace

Drupal\synonyms\Plugin\Derivative

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, BehaviorService $behavior_service, EntityTypeBundleInfoInterface $entity_type_bundle_info, EntityFieldManagerInterface $entity_field_manager, FieldTypeToSynonyms $field_type_to_synonyms) {
  $this->entityTypeManager = $entity_type_manager;
  $this->behaviorService = $behavior_service;
  $this->entityTypeBundleInfo = $entity_type_bundle_info;
  $this->entityFieldManager = $entity_field_manager;
  $this->fieldTypeToSynonyms = $field_type_to_synonyms;
}