You are here

public function ChangeLayoutForm::__construct in Display Suite 8.3

Same name and namespace in other branches
  1. 8.4 src/Form/ChangeLayoutForm.php \Drupal\ds\Form\ChangeLayoutForm::__construct()

ChangeLayoutForm constructor.

Parameters

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

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

File

src/Form/ChangeLayoutForm.php, line 39

Class

ChangeLayoutForm
Provides a configuration form for configurable actions.

Namespace

Drupal\ds\Form

Code

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