You are here

vud_comment.install in Vote Up/Down 7

Install, update and uninstall functions for the Vote Up/Down Comment module.

File

vud_comment/vud_comment.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Vote Up/Down Comment module.
 */

/**
 * Implementation of hook_uninstall().
 */
function vud_comment_uninstall() {
  variable_del('vud_comment_node_types');
  variable_del('vud_comment_widget');
  variable_del('vud_comment_widget_display');
  variable_del('vud_comment_votes');
  variable_del('vud_comment_reset');
}

Functions

Namesort descending Description
vud_comment_uninstall Implementation of hook_uninstall().