You are here

function stage_file_proxy_uninstall in Stage File Proxy 7

Implements hook_uninstall().

File

./stage_file_proxy.install, line 11
Install, update and uninstall functions for the Stage File Proxy module.

Code

function stage_file_proxy_uninstall() {
  variable_del('stage_file_proxy_origin');
  variable_del('stage_file_proxy_use_imagecache_root');
  variable_del('stage_file_proxy_hotlink');
  variable_del('stage_file_proxy_origin_dir');
  variable_del('stage_file_proxy_sslversion');
  variable_del('stage_file_proxy_excluded_extensions');
}