You are here

function socialmedia_uninstall in Social media 7

Implements hook_uninstall()

File

./socialmedia.install, line 11
Install, update and uninstall functions for the widgets module.

Code

function socialmedia_uninstall() {
  variable_del('socialmedia_platforms_site');
  variable_del('socialmedia_platforms_user');
  variable_del('socialmedia_default_color_body_background');
  variable_del('socialmedia_default_color_body_linktext');
  variable_del('socialmedia_default_color_body_text');
  variable_del('socialmedia_default_color_border');
  variable_del('socialmedia_default_color_header_background');
  variable_del('socialmedia_default_color_header_text');
  variable_del('socialmedia_default_height');
  variable_del('socialmedia_default_width');
  variable_del('socialmedia_icon_default_style');
  variable_del('socialmedia_widget_set_default_profile');
  variable_del('socialmedia_widget_set_default_share');
}