You are here

function commentaccess_uninstall in Comment Access 7

Implementation of hook_uninstall().

File

./commentaccess.install, line 11
Install and uninstall functions for Comment Access

Code

function commentaccess_uninstall() {
  variable_del('commentaccess_approval_default');
  variable_del('commentaccess_mail_default');
  variable_del('commentaccess_approval_msg');
  variable_del('commentaccess_approval_php');
  variable_del('commentaccess_mail_message');
  variable_del('commentaccess_mail_subject');
}