diff options
author | Nils Adermann <naderman@naderman.de> | 2012-09-01 12:44:23 -0700 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2012-09-01 12:44:23 -0700 |
commit | 43190ebecaeadbc8738da9dcb33b9163652fb9f3 (patch) | |
tree | 516a6470a93742067259d618f7e1c6c48f558894 /phpBB/includes/functions_user.php | |
parent | c539c2b0f9f736da816422320d6f58e6f414f54e (diff) | |
parent | 02644c02b9d6bed5e4a8e20323bdafb2ca9749b4 (diff) | |
download | forums-43190ebecaeadbc8738da9dcb33b9163652fb9f3.tar forums-43190ebecaeadbc8738da9dcb33b9163652fb9f3.tar.gz forums-43190ebecaeadbc8738da9dcb33b9163652fb9f3.tar.bz2 forums-43190ebecaeadbc8738da9dcb33b9163652fb9f3.tar.xz forums-43190ebecaeadbc8738da9dcb33b9163652fb9f3.zip |
Merge pull request #962 from imkingdavid/feature/add_events
Feature/add events
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 9e33a5122e..f843902dd5 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -162,6 +162,7 @@ function user_update_name($old_name, $new_name) function user_add($user_row, $cp_data = false) { global $db, $user, $auth, $config, $phpbb_root_path, $phpEx; + global $phpbb_dispatcher; if (empty($user_row['username']) || !isset($user_row['group_id']) || !isset($user_row['user_email']) || !isset($user_row['user_type'])) { @@ -255,6 +256,16 @@ function user_add($user_row, $cp_data = false) } } + /** + * Use this event to modify the values to be inserted when a user is added + * + * @event core.user_add_modify_data + * @var array sql_ary Array of data to be inserted when a user is added + * @since 3.1-A1 + */ + $vars = array('sql_ary'); + extract($phpbb_dispatcher->trigger_event('core.user_add_modify_data', compact($vars))); + $sql = 'INSERT INTO ' . USERS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary); $db->sql_query($sql); |