You are here

function vud_comment_uninstall in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 6.3 vud_comment/vud_comment.install \vud_comment_uninstall()
  2. 7 vud_comment/vud_comment.install \vud_comment_uninstall()

Implementation of hook_uninstall().

File

vud_comment/vud_comment.install, line 25
Install, update and uninstall functions for the Vote Up/Down Comment module.

Code

function vud_comment_uninstall() {
  drupal_uninstall_schema('vud_comment');
  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');
}