commentaccess.install in Comment Access 7
Install and uninstall functions for Comment Access
File
commentaccess.installView source
<?php
/**
* @file
* Install and uninstall functions for Comment Access
*/
/**
* Implementation of hook_uninstall().
*/
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');
}
Functions
Name | Description |
---|---|
commentaccess_uninstall | Implementation of hook_uninstall(). |