UserAuthenticationController::getRequestFormat

protected UserAuthenticationController::getRequestFormat(Request $request) Gets the format of the current request. Parameters \Symfony\Component\HttpFoundation\Request $request: The current request. Return value string The format of the request. File core/modules/user/src/Controller/UserAuthenticationController.php, line 277 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected fun

UserAuthenticationController::getLoginFloodIdentifier

protected UserAuthenticationController::getLoginFloodIdentifier(Request $request, $username) Gets the login identifier for user login flood control. Parameters \Symfony\Component\HttpFoundation\Request $request: The current request. string $username: The username supplied in login credentials. Return value string The login identifier or if the user does not exist an empty string. File core/modules/user/src/Controller/UserAuthenticationController.php, line 325 Class UserAuthenticationContr

UserAuthenticationController::floodControl

protected UserAuthenticationController::floodControl(Request $request, $username) Enforces flood control for the current login request. Parameters \Symfony\Component\HttpFoundation\Request $request: The current request. string $username: The user name sent for login credentials. File core/modules/user/src/Controller/UserAuthenticationController.php, line 293 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\us

UserAuthenticationController::create

public static UserAuthenticationController::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container:

UserAuthenticationController::$userStorage

The user storage. Type: \Drupal\user\UserStorageInterface File core/modules/user/src/Controller/UserAuthenticationController.php, line 52 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $userStorage;

UserAuthenticationController::$userAuth

The user authentication. Type: \Drupal\user\UserAuthInterface File core/modules/user/src/Controller/UserAuthenticationController.php, line 66 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $userAuth;

UserAuthenticationController::$serializerFormats

The available serialization formats. Type: array File core/modules/user/src/Controller/UserAuthenticationController.php, line 87 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $serializerFormats = [];

UserAuthenticationController::$serializer

The serializer. Type: \Symfony\Component\Serializer\Serializer File core/modules/user/src/Controller/UserAuthenticationController.php, line 80 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $serializer;

UserAuthenticationController::$routeProvider

The route provider. Type: \Drupal\Core\Routing\RouteProviderInterface File core/modules/user/src/Controller/UserAuthenticationController.php, line 73 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $routeProvider;

UserAuthenticationController::$flood

The flood controller. Type: \Drupal\Core\Flood\FloodInterface File core/modules/user/src/Controller/UserAuthenticationController.php, line 45 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $flood;