function talk_uninstall in Talk 6
Same name and namespace in other branches
- 7 talk.install \talk_uninstall()
Implementation of hook_uninstall().
File
- ./
talk.install, line 11 - Install/uninstall code for talk module.
Code
function talk_uninstall() {
variable_del('talk_title');
$result = db_query("DELETE FROM {variable} WHERE name LIKE 'comment_talk_%%'");
cache_clear_all('variables', 'cache');
}