You are here

commentaccess.install in Comment Access 7

Install and uninstall functions for Comment Access

File

commentaccess.install
View 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

Namesort descending Description
commentaccess_uninstall Implementation of hook_uninstall().