You are here

function amazons3_uninstall in AmazonS3 7

Same name and namespace in other branches
  1. 7.2 amazons3.install \amazons3_uninstall()

Implements hook_uninstall().

File

./amazons3.install, line 49
Install, update and uninstall functions for the AmazonS3 module.

Code

function amazons3_uninstall() {
  variable_del('amazons3_bucket');
  variable_del('amazons3_cname');
  variable_del('amazons3_domain');
  variable_del('amazons3_cache');
  variable_del('amazons3_torrents');
  variable_del('amazons3_presigned_urls');
  variable_del('amazons3_saveas');
  variable_del('amazons3_rrs');
  variable_del('amazons3_https');
  variable_del('amazons3_hostname');
}