PasswordChangeEvent

New in version 10.4

This event replaces the $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['felogin']['password_changed'] hook from the pibase plugin.

The event contains information about the password that has been set and will be stored in the database shortly. It allows to mark the password as invalid.

API

class \TYPO3\CMS\FrontendLogin\Event\ PasswordChangeEvent

Event that contains information about the password which was set, and is about to be stored in the database.

Additional validation can happen here.

getUser ( )
returntype

array

getHashedPassword ( )
returntype

string

setHashedPassword ( string $passwordHash)
param string $passwordHash

the passwordHash

getRawPassword ( )
returntype

string

setAsInvalid ( string $message)
param string $message

the message

getErrorMessage ( )
returntype

string

isPropagationStopped ( )
returntype

bool