You are here

function gotwo_uninstall in Go - url redirects 5

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

Implementation of hook_uninstall().

File

./gotwo.install, line 38
Installation script for the go.module

Code

function gotwo_uninstall() {
  db_query('DROP TABLE {gotwo}');
  variable_del('gotwo_numeric');
  variable_del('gotwo_max_length');
  variable_del('gotwo_disclaimer_boolean');
  variable_del('gotwo_disclaimer_time');
  variable_del('gotwo_disclaimer_text');
}