You are here

public function InsertViewDialog::__construct in Advanced Insert View 2.0.x

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

InsertViewDialog constructor.

Parameters

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

\Drupal\Core\Entity\EntityFieldManagerInterface $entityFieldManager: The entity field manager service.

File

src/Form/InsertViewDialog.php, line 48

Class

InsertViewDialog
Class InsertViewDialog.

Namespace

Drupal\insert_view_adv\Form

Code

public function __construct(EntityTypeManagerInterface $entityTypeManager, EntityFieldManagerInterface $entityFieldManager) {
  $this->entityTypeManager = $entityTypeManager;
  $this->entityFieldManager = $entityFieldManager;
}