function nodewords_uninstall in Nodewords: D6 Meta Tags 5
Same name and namespace in other branches
- 6.3 nodewords.install \nodewords_uninstall()
- 6 nodewords.install \nodewords_uninstall()
- 6.2 nodewords.install \nodewords_uninstall()
Implementation of hook_uninstall().
File
- ./
nodewords.install, line 46
Code
function nodewords_uninstall() {
db_query("DROP TABLE {nodewords}");
variable_del('nodewords');
variable_del('nodewords-repeat');
variable_del('nodewords-use_front');
}