function constant_contact_uninstall in Constant Contact 6.3
Same name and namespace in other branches
- 5 constant_contact.install \constant_contact_uninstall()
- 6 constant_contact.install \constant_contact_uninstall()
- 6.2 constant_contact.install \constant_contact_uninstall()
- 7.3 constant_contact.install \constant_contact_uninstall()
Removes the variables we have set for the module
File
- ./
constant_contact.install, line 105
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');
}