function comment_notify_uninstall in Comment Notify 6
Same name and namespace in other branches
- 5.2 comment_notify.install \comment_notify_uninstall()
- 7 comment_notify.install \comment_notify_uninstall()
Implementation of hook_uninstall().
File
- ./
comment_notify.install, line 29 - comment_notify.install.
Code
function comment_notify_uninstall() {
drupal_uninstall_schema('comment_notify');
variable_del('node_notify_default_mailtext');
db_query("DELETE FROM {variable} WHERE name LIKE 'comment_notify_%'");
}