You are here

function fb_user_app_uninstall in Drupal for Facebook 7.3

Same name and namespace in other branches
  1. 6.3 contrib/fb_user_app.install \fb_user_app_uninstall()

Implementation of hook_uninstall().

File

contrib/fb_user_app.install, line 12
Install file for fb_user.module.

Code

function fb_user_app_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('fb_user_app');

  // Remove variables.
  variable_del(FB_USER_APP_VAR_TRACK_EVERY_PAGE);
  variable_del(FB_USER_APP_VAR_USERS_THAT_GRANT_OFFLINE);
  variable_del(FB_USER_APP_VAR_TRACK_USERS);
  variable_del(FB_USER_APP_VAR_TRACK_PAGES);
}