You are here

function fbconnect_uninstall in Facebook Connect 8.2

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

Implements hook_uninstall().

File

./fbconnect.install, line 65
Install, update and uninstall functions for the fbconnect module.

Code

function fbconnect_uninstall() {

  // Delete our module's variable from the variables table.
  variable_del('fbconnect_appid');
  variable_del('fbconnect_base_domaine');
  variable_del('fbconnect_button');
  variable_del('fbconnect_button_login_text');
  variable_del('fbconnect_button_register_text');
  variable_del('fbconnect_connect_url');
  variable_del('fbconnect_debug');
  variable_del('fbconnect_exclude_patterns');
  variable_del('fbconnect_fast_reg');
  variable_del('fbconnect_fast_reg_autoname');
  variable_del('fbconnect_language_code');
  variable_del('fbconnect_loginout_mode');
  variable_del('fbconnect_namecounter');
  variable_del('fbconnect_noroot');
  variable_del('fbconnect_pic_allow');
  variable_del('fbconnect_pic_size');
  variable_del('fbconnect_pic_size_comments');
  variable_del('fbconnect_pic_size_nodes');
  variable_del('fbconnect_pic_size_profile');
  variable_del('fbconnect_reg_display');
  variable_del('fbconnect_reg_location');
  variable_del('fbconnect_reg_options');
  variable_del('fbconnect_skey');
  variable_del('fbconnect_ssl');
}