BeforeUserLoggedInEvent
extends Event
in package
Base event class for the event dispatcher service
Tags
Table of Contents
Properties
- $backend : IApacheBackend|null
- $password : string|null
- $propagationStopped : bool
- $username : string
Methods
- __construct() : mixed
- Compatibility constructor
- getBackend() : IApacheBackend|null
- return backend if available (or null)
- getPassword() : string|null
- getUsername() : string
- returns the login name, which must not necessarily match to a user ID
- isPropagationStopped() : bool
- {@inheritDoc}
- stopPropagation() : void
- Stops the propagation of the event to further event listeners
Properties
$backend
private
IApacheBackend|null
$backend
$password
private
string|null
$password
$propagationStopped
private
bool
$propagationStopped
= false
Tags
$username
private
string
$username
Methods
__construct()
Compatibility constructor
public
__construct(string $username, string|null $password[, IApacheBackend|null $backend = null ]) : mixed
Parameters
- $username : string
- $password : string|null
- $backend : IApacheBackend|null = null
Tags
getBackend()
return backend if available (or null)
public
getBackend() : IApacheBackend|null
Tags
Return values
IApacheBackend|nullgetPassword()
public
getPassword() : string|null
Tags
Return values
string|nullgetUsername()
returns the login name, which must not necessarily match to a user ID
public
getUsername() : string
Tags
Return values
stringisPropagationStopped()
{@inheritDoc}
public
isPropagationStopped() : bool
Tags
Return values
boolstopPropagation()
Stops the propagation of the event to further event listeners
public
stopPropagation() : void