public function UserLoginForm::__construct in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/src/Form/UserLoginForm.php \Drupal\user\Form\UserLoginForm::__construct()
- 9 core/modules/user/src/Form/UserLoginForm.php \Drupal\user\Form\UserLoginForm::__construct()
Constructs a new UserLoginForm.
Parameters
\Drupal\user\UserFloodControlInterface $user_flood_control: The user flood control service.
\Drupal\user\UserStorageInterface $user_storage: The user storage.
\Drupal\user\UserAuthInterface $user_auth: The user authentication object.
\Drupal\Core\Render\RendererInterface $renderer: The renderer.
\Drupal\Core\Render\BareHtmlPageRendererInterface $bare_html_renderer: The renderer.
File
- core/
modules/ user/ src/ Form/ UserLoginForm.php, line 72
Class
- UserLoginForm
- Provides a user login form.
Namespace
Drupal\user\FormCode
public function __construct(UserFloodControlInterface $user_flood_control, UserStorageInterface $user_storage, UserAuthInterface $user_auth, RendererInterface $renderer, BareHtmlPageRendererInterface $bare_html_renderer) {
$this->userFloodControl = $user_flood_control;
$this->userStorage = $user_storage;
$this->userAuth = $user_auth;
$this->renderer = $renderer;
$this->bareHtmlPageRenderer = $bare_html_renderer;
}