You are here

public function EntityFormBuilder::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/EntityFormBuilder.php \Drupal\Core\Entity\EntityFormBuilder::__construct()

Constructs a new EntityFormBuilder.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.

\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder.

File

core/lib/Drupal/Core/Entity/EntityFormBuilder.php, line 35

Class

EntityFormBuilder
Builds entity forms.

Namespace

Drupal\Core\Entity

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, FormBuilderInterface $form_builder) {
  $this->entityTypeManager = $entity_type_manager;
  $this->formBuilder = $form_builder;
}