You are here

function nat_uninstall in Node Auto Term [NAT] 7

Same name and namespace in other branches
  1. 5 nat.install \nat_uninstall()
  2. 6.2 nat.install \nat_uninstall()
  3. 6 nat.install \nat_uninstall()
  4. 7.2 nat.install \nat_uninstall()

Implements hook_uninstall().

File

./nat.install, line 73

Code

function nat_uninstall() {
  variable_del('nat_config');
  $t = get_t();
  drupal_set_message($t('NAT module: Uninstallation script complete.'));
}