You are here

public function DisplayFieldCopyForm::__construct in Display Field Copy 2.x

Same name and namespace in other branches
  1. 8 src/Form/DisplayFieldCopyForm.php \Drupal\display_field_copy\Form\DisplayFieldCopyForm::__construct()

File

src/Form/DisplayFieldCopyForm.php, line 45

Class

DisplayFieldCopyForm
Configure copy fields.

Namespace

Drupal\display_field_copy\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager, CacheTagsInvalidatorInterface $cache_invalidator, ModuleHandlerInterface $module_handler, EntityFieldManagerInterface $entity_field_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info) {
  parent::__construct($config_factory, $entity_type_manager, $cache_invalidator, $module_handler);
  $this->entityFieldManager = $entity_field_manager;
  $this->entityTypeBundleInfo = $entity_type_bundle_info;
}