You are here

function fboauth_user_insert in Facebook OAuth (FBOAuth) 7.2

Same name and namespace in other branches
  1. 6 fboauth.module \fboauth_user_insert()
  2. 7 fboauth.module \fboauth_user_insert()

Implements hook_user_insert().

File

./fboauth.module, line 123

Code

function fboauth_user_insert(&$edit, &$account, $category) {
  if (isset($edit['fboauth_fbid'])) {
    fboauth_save($account->uid, $edit['fboauth_fbid']);
  }
}