You are here

function constant_contact_uninstall in Constant Contact 7.3

Same name and namespace in other branches
  1. 5 constant_contact.install \constant_contact_uninstall()
  2. 6.3 constant_contact.install \constant_contact_uninstall()
  3. 6 constant_contact.install \constant_contact_uninstall()
  4. 6.2 constant_contact.install \constant_contact_uninstall()

Implements hook_uninstall().

File

./constant_contact.install, line 102

Code

function constant_contact_uninstall() {
  variable_del('cc_form_block_fields');
  variable_del('cc_extra_fields');
  variable_del('cc_extra_field_mappings');
  variable_del('cc_register_page_method');
  variable_del('cc_default_opt_in');
  variable_del('cc_contact_list_sort_order');
  variable_del('cc_subscribe_format');
  variable_del('cc_show_format_choice');
  variable_del('cc_signup_title');
  variable_del('cc_signup_description');
  variable_del('cc_lists');
  variable_del('cc_sync_unsubscribed_users');
  variable_del('cc_sync_last_run');
  variable_del('cc_block_redirect_url');
  variable_del('cc_list_selection_format');
  variable_del('cc_block_list_selection_format');
  variable_del('cc_block_show_list_selection');
  variable_del('cc_block_lists');
  variable_del('cc_email_field_position');
  variable_del('cc_lists_cache_expire');
  variable_del('cc_show_new_lists');
}