You are here

function nodewords_uninstall in Nodewords: D6 Meta Tags 6.2

Same name and namespace in other branches
  1. 5 nodewords.install \nodewords_uninstall()
  2. 6.3 nodewords.install \nodewords_uninstall()
  3. 6 nodewords.install \nodewords_uninstall()

Implements hook_uninstall().

File

./nodewords.install, line 109
Install, update and uninstall functions for the Nodewords module.

Code

function nodewords_uninstall() {
  drupal_uninstall_schema('nodewords');
  variable_del('nodewords_base_url');
  variable_del('nodewords_enable_tokens');
  variable_del('nodewords_global');
  variable_del('nodewords_head');
  variable_del('nodewords_icra_validation_content');
  variable_del('nodewords_list_repeat');
  variable_del('nodewords_max_size');
  variable_del('nodewords_update');
  variable_del('nodewords_save_tags_watchdog');
}