You are here

function account_sync_user_insert in Account Sync 7.2

Implements hook_user_insert().

File

./account_sync.module, line 91
Contains the base module code and hooks for the account sync module.

Code

function account_sync_user_insert(&$edit, &$account, $category) {
  module_load_include('inc', 'account_sync', 'account_sync.sender');
  return account_sync_send_update('insert', $edit, $account, $category);
}