You are here

function gotwo_uninstall in Go - url redirects 6

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

Implementation of hook_uninstall().

File

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

Code

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