You are here

public function AccountForm::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::__construct()
  2. 9 core/modules/user/src/AccountForm.php \Drupal\user\AccountForm::__construct()

Constructs a new EntityForm object.

Parameters

\Drupal\Core\Entity\EntityRepositoryInterface $entity_repository: The entity repository.

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager.

\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info: The entity type bundle service.

\Drupal\Component\Datetime\TimeInterface $time: The time service.

Overrides ContentEntityForm::__construct

File

core/modules/user/src/AccountForm.php, line 44

Class

AccountForm
Form controller for the user account forms.

Namespace

Drupal\user

Code

public function __construct(EntityRepositoryInterface $entity_repository, LanguageManagerInterface $language_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info = NULL, TimeInterface $time = NULL) {
  parent::__construct($entity_repository, $entity_type_bundle_info, $time);
  $this->languageManager = $language_manager;
}