You are here

function hsts_uninstall in HTTP Strict Transport Security 7

Same name and namespace in other branches
  1. 6 hsts.install \hsts_uninstall()

Implementation of hook_uninstall().

File

./hsts.install, line 29
Install file for hsts.

Code

function hsts_uninstall() {
  variable_del('hsts_max_age');
  variable_del('hsts_enabled');
  variable_del('hsts_subdomains');
  variable_del('hsts_https_only');
}