You are here

stage_file_proxy.install in Stage File Proxy 7

Same filename and directory in other branches
  1. 8 stage_file_proxy.install

Install, update and uninstall functions for the Stage File Proxy module.

File

stage_file_proxy.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Stage File Proxy module.
 */

/**
 * Implements hook_uninstall().
 */
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');
}

Functions

Namesort descending Description
stage_file_proxy_uninstall Implements hook_uninstall().