Actions
Feature proposal #6224
closedImplement triggers
Description
Implement custom triggers so behavior can be fired specifically on reconfirmation.
Updated by krileon about 8 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
The following triggers will be available with release of 4.0.3.
$_PLUGINS->trigger( 'reconfirm_onBeforeCancel', array( &$user, &$reconfirmEmail, $confirmcode ) );
$_PLUGINS->trigger( 'reconfirm_onAfterCancel', array( $user, $reconfirmEmail, $confirmcode ) );
$_PLUGINS->trigger( 'reconfirm_onBeforeConfirm', array( &$user, &$reconfirmEmail, $confirmcode ) );
$_PLUGINS->trigger( 'reconfirm_onAfterConfirm', array( $user, $reconfirmEmail, $confirmcode ) );
The $reconfirmEmail object containers details like new email address and old email address.
Actions