campaignmonitor.install in Campaign Monitor 6.2
Install file for the Campaign Monitor module
Removes all variables used by the module and clears the cache.
File
campaignmonitor.installView source
<?php
/**
* @file
* Install file for the Campaign Monitor module
*
* Removes all variables used by the module and clears
* the cache.
*/
function campaignmonitor_uninstall() {
variable_del('campaignmonitor_userpagedisplaytext');
variable_del('campaignmonitor_checkboxdisplaytext');
variable_del('campaignmonitor_client_id');
variable_del('campaignmonitor_list_id');
variable_del('campaignmonitor_display_on');
variable_del('campaignmonitor_api_key');
variable_del('campaignmonitor_pastcampaignurl');
variable_del('campaignmonitor_connection_timeout');
cache_clear_all('*', 'cache', TRUE);
cache_clear_all('*', 'cache_filter', TRUE);
cache_clear_all('*', 'cache_menu', TRUE);
cache_clear_all('*', 'cache_page', TRUE);
}
Functions
Name | Description |
---|---|
campaignmonitor_uninstall | @file Install file for the Campaign Monitor module |