You are here

function fb_autopost_uninstall in Facebook Autopost 7

Implements hook_uninstall().

File

./fb_autopost.install, line 75
Install file to support fb_autopost.module

Code

function fb_autopost_uninstall() {
  variable_del('fb_autopost_app_id');
  variable_del('fb_autopost_app_secret');
  variable_del('fb_autopost_account_id');
  variable_del('fb_autopost_page');
  variable_del('fb_autopost_pages_access_tokens');
  variable_del('fb_autopost_token');
}