mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
Merge pull request #3823 from lavigor/ticket/14087
[ticket/14087] Add an event to ucp_activate.php.
This commit is contained in:
commit
f585f48aca
1 changed files with 12 additions and 1 deletions
|
@ -30,7 +30,7 @@ class ucp_activate
|
||||||
function main($id, $mode)
|
function main($id, $mode)
|
||||||
{
|
{
|
||||||
global $config, $phpbb_root_path, $phpEx;
|
global $config, $phpbb_root_path, $phpEx;
|
||||||
global $db, $user, $auth, $template, $phpbb_container;
|
global $db, $user, $auth, $template, $phpbb_container, $phpbb_dispatcher;
|
||||||
|
|
||||||
$user_id = request_var('u', 0);
|
$user_id = request_var('u', 0);
|
||||||
$key = request_var('k', '');
|
$key = request_var('k', '');
|
||||||
|
@ -143,6 +143,17 @@ class ucp_activate
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This event can be used to modify data after user account's activation
|
||||||
|
*
|
||||||
|
* @event core.ucp_activate_after
|
||||||
|
* @var array user_row Array with some user data
|
||||||
|
* @var string message Language string of the message that will be displayed to the user
|
||||||
|
* @since 3.1.6-RC1
|
||||||
|
*/
|
||||||
|
$vars = array('user_row', 'message');
|
||||||
|
extract($phpbb_dispatcher->trigger_event('core.ucp_activate_after', compact($vars)));
|
||||||
|
|
||||||
meta_refresh(3, append_sid("{$phpbb_root_path}index.$phpEx"));
|
meta_refresh(3, append_sid("{$phpbb_root_path}index.$phpEx"));
|
||||||
trigger_error($user->lang[$message]);
|
trigger_error($user->lang[$message]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue