You are here

public function UserCsvImportForm::__construct in User CSV import 8

Same name and namespace in other branches
  1. 2.0.x src/Form/UserCsvImportForm.php \Drupal\user_csv_import\Form\UserCsvImportForm::__construct()
  2. 1.0.x src/Form/UserCsvImportForm.php \Drupal\user_csv_import\Form\UserCsvImportForm::__construct()

User import Form constructor.

Parameters

\Drupal\Core\Messenger\MessengerInterface $messenger:

\Drupal\Core\Entity\EntityFieldManager $entityManager:

File

src/Form/UserCsvImportForm.php, line 39

Class

UserCsvImportForm
Provides methods to define and build the user import form.

Namespace

Drupal\user_csv_import\Form

Code

public function __construct(MessengerInterface $messenger, EntityFieldManager $entityManager) {
  $this->messenger = $messenger;
  $this->entityManager = $entityManager;
}