You are here

function gotwo_uninstall in Go - url redirects 7

Same name and namespace in other branches
  1. 5 gotwo.install \gotwo_uninstall()
  2. 6 gotwo.install \gotwo_uninstall()

Implements hook_uninstall().

File

./gotwo.install, line 11
Installation script for the gotwo.module

Code

function gotwo_uninstall() {
  variable_del('gotwo_numeric');
  variable_del('gotwo_max_length');
  variable_del('gotwo_transliteration');
  variable_del('gotwo_separator');
  variable_del('gotwo_disclaimer_boolean');
  variable_del('gotwo_disclaimer_title');
  variable_del('gotwo_disclaimer_time');
  variable_del('gotwo_disclaimer_text');
}