You are here

function fboauth_user_insert in Facebook OAuth (FBOAuth) 6

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

Implements hook_user_insert().

1 call to fboauth_user_insert()
fboauth_user in ./fboauth.module
Implements hook_user().

File

./fboauth.module, line 119

Code

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