1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-19 07:00:14 +01:00

[ticket/14927] Add items to core.user_add_modify_data

PHPBB3-14927
This commit is contained in:
david63 2016-12-19 11:23:58 +00:00 committed by Marc Alexander
parent 481a592b8d
commit 1b46435734
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -272,13 +272,19 @@ function user_add($user_row, $cp_data = false, $notifications_data = null)
* Use this event to modify the values to be inserted when a user is added
*
* @event core.user_add_modify_data
* @var array user_row Array of user details submited to user_add
* @var array cp_data Array of Custom profile fields submited to user_add
* @var array sql_ary Array of data to be inserted when a user is added
* @var array user_row Array of user details submited to user_add
* @var array cp_data Array of Custom profile fields submited to user_add
* @var array sql_ary Array of data to be inserted when a user is added
* @since 3.1.0-a1
* @changed 3.1.0-b5 Added user_row and cp_data
* @var array notifications_data Array of notification data to be inserted when a user is added
* @change 3.2.0
*/
$vars = array('user_row', 'cp_data', 'sql_ary');
$vars = array(
'user_row',
'cp_data',
'sql_ary',
'notifications_data');
extract($phpbb_dispatcher->trigger_event('core.user_add_modify_data', compact($vars)));
$sql = 'INSERT INTO ' . USERS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);