function fboauth_user_delete in Facebook OAuth (FBOAuth) 7.2
Same name and namespace in other branches
- 6 fboauth.module \fboauth_user_delete()
- 7 fboauth.module \fboauth_user_delete()
Implements hook_user_delete().
1 call to fboauth_user_delete()
- fboauth_user_cancel in ./
fboauth.module - Implements hook_user_cancel().
File
- ./
fboauth.module, line 141
Code
function fboauth_user_delete($account) {
// Passing in a NULL $fbid deletes any existing associations.
fboauth_save($account->uid, NULL);
}