final class UserLoginEvent in Hook Event Dispatcher 8
Class UserLoginEvent.
Hierarchy
- class \Drupal\hook_event_dispatcher\Event\User\UserLoginEvent extends \Symfony\Component\EventDispatcher\Event implements EventInterface
Expanded class hierarchy of UserLoginEvent
1 file declares its use of UserLoginEvent
- hook_event_dispatcher.module in ./
hook_event_dispatcher.module - Hook event dispatcher module.
File
- src/
Event/ User/ UserLoginEvent.php, line 13
Namespace
Drupal\hook_event_dispatcher\Event\UserView source
final class UserLoginEvent extends Event implements EventInterface {
/**
* Account.
*
* @var \Drupal\Core\Session\AccountInterface
*/
private $account;
/**
* UserLoginEvent constructor.
*
* @param \Drupal\Core\Session\AccountInterface $account
* Account.
*/
public function __construct(AccountInterface $account) {
$this->account = $account;
}
/**
* Get the account.
*
* @return \Drupal\Core\Session\AccountInterface
* Account.
*/
public function getAccount() {
return $this->account;
}
/**
* Get the dispatcher type.
*
* @return string
* The dispatcher type.
*/
public function getDispatcherType() {
return HookEventDispatcherInterface::USER_LOGIN;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UserLoginEvent:: |
private | property | Account. | |
UserLoginEvent:: |
public | function | Get the account. | |
UserLoginEvent:: |
public | function |
Get the dispatcher type. Overrides EventInterface:: |
|
UserLoginEvent:: |
public | function | UserLoginEvent constructor. |