You are here

function nat_uninstall in Node Auto Term [NAT] 6.2

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

Implementation of hook_uninstall().

File

./nat.install, line 75

Code

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