Download the PHP package inem0o/user-password-lost-bundle without Composer
On this page you can find all versions of the php package inem0o/user-password-lost-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download inem0o/user-password-lost-bundle
More information about inem0o/user-password-lost-bundle
Files in inem0o/user-password-lost-bundle
Package user-password-lost-bundle
Short Description A user password recovery bundle for Symfony3
License MIT
Homepage https://paradise.inem0o.fr:65253/inem0o/UserPasswordLostBundle
Informations about the package user-password-lost-bundle
Installation
NOTE: The bundle is compatible with Symfony
3.0
upwards.
1 . Download this bundle to your project first. The preferred way to do it is to use Composer package manager:
2 . Configure kernel:
3 . Configure bundle :
4 . Configure routes :
4 . Override templates :
Copy all templates from
./vendor/inem0o/user-password-lost-bundle/inem0o/UserPasswordLostBundle/Resources/views/*
into the folder
./app/Resources/UserPasswordLostBundle/views
5 . Override translations :
Copy all translation files from
./vendor/inem0o/user-password-lost-bundle/inem0o/UserPasswordLostBundle/Resources/translations/userPasswordLostBundle.*.xliff
into the folder
./app/Resources/translations/userPasswordLostBundle.*.xliff
Events
The UserPasswordLostBundle dispatches an event when the reset has been successful : The event contains the user who requested a new password, accessible with a getter. You have to register a listener in order to catch it.
Example : (Considering you named your event PasswordResetSuccessListener and your callback method onSuccessfulReset)