You are here

function fbconnect_uninstall in Facebook Connect 6

Same name and namespace in other branches
  1. 8.2 fbconnect.install \fbconnect_uninstall()
  2. 5 fbconnect.install \fbconnect_uninstall()
  3. 6.2 fbconnect.install \fbconnect_uninstall()
  4. 7.2 fbconnect.install \fbconnect_uninstall()

Implementation of hook_uninstall().

File

./fbconnect.install, line 15
Implementation of hook_install().

Code

function fbconnect_uninstall() {
  drupal_uninstall_schema('fbconnect');
  _fbconnect_change_user_mail_field('uninstall');

  // Delete our module's variable from the variables table.
  variable_del('fbconnect_key');
  variable_del('fbconnect_skey');
  variable_del('fbconnect_base_domaine');
  variable_del('fbconnect_connect_url');
  variable_del('fbconnect_language_code');
  variable_del('fbconnect_debug');
  variable_del('fbconnect_fast_reg');
  variable_del('fbconnect_reg_options');
  variable_del('fbconnect_loginout_mode');
  variable_del('fbconnect_invite_msg');
  variable_del('fbconnect_invite_name');
  variable_del('fbconnect_invite_dest');
  variable_del('fbconnect_button');
  variable_del('fbconnect_button_text');
  variable_del('fbconnect_pic_allow');
  variable_del('fbconnect_pic_size');
  variable_del('fbconnect_pic_logo');
}