Actions
Feature #22504
closedSend email hook has been removed
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
felogin
Target version:
-
Start date:
2010-04-23
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
We need user not to reset but to send passwords as it was possible in newloginbox.
It would be nice to have a hook (in further versions) like this (placed in main() of class.tx_felogin_pi1.php):
// Hook (used by xwave <christian.juerges@xwave.ch> to show old send password function)
if (is_array($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['felogin']['forgotEmail'])) {
$_params = array (
'conf' => $this->conf,
'template' => $this->template
);
foreach($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['felogin']['forgotEmail'] as $funcRef) {
$content .= t3lib_div::callUserFunction($funcRef, $_params, $this);
}
} else {
$content .= $this->showForgot();
}
(issue imported from #M14192)
Actions