Feature #37800
felogin password policy hook
| Status: | New | Start date: | 2012-06-06 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| TYPO3 Version: | 4.6 | Complexity: | ||
| PHP Version: | ||||
| Votes: | 1 (View) |
Description
I would like to see a hook added for checking a password (within class.tx_felogin_pi1.php / changePassword()) against a password policy.
I propose something like this:
$pw_accepted = t3lib_div::callUserFunction(...);
In my case it would be even better, if the hook worked something like this:
list($pw_accepted, $messages) = t3lib_div::callUserFunction(...);
... but at first glance I do not see an obvious way to forward the messages in a proper way into the $markerArray. So going with the simpler version and customizing the "change_password_notvalid_message" would probably be the way to go?!