You are here

function socialfeed_uninstall in Social Feed 6

Same name and namespace in other branches
  1. 7.2 socialfeed.install \socialfeed_uninstall()
  2. 7 socialfeed.install \socialfeed_uninstall()

Implements hook_uninstall().

File

./socialfeed.install, line 167
Install, update and uninstall functions for the XXX module.

Code

function socialfeed_uninstall() {
  variable_del('socialfeed_facebook_profile_id');
  variable_del('socialfeed_facebook_app_id');
  variable_del('socialfeed_facebook_app_secret');
  variable_del('socialfeed_twitter_profile_id');
  variable_del('socialfeed_youtube_profile_name');
  variable_del('socialfeed_foursquare_access_token');
  variable_del('socialfeed_title');
  variable_del('socialfeed_displaycount');
  variable_del('socialfeed_facebook_title_checkbox');
  variable_del('socialfeed_facebook_title');
  variable_del('socialfeed_twitter_title_checkbox');
  variable_del('socialfeed_twitter_title');
  variable_del('socialfeed_youtube_title_checkbox');
  variable_del('socialfeed_youtube_title');
  variable_del('socialfeed_foursquare_title_checkbox');
  variable_del('socialfeed_foursquare_title');
  drupal_uninstall_schema('socialfeed');
}