You are here

function vud_node_uninstall in Vote Up/Down 7

Same name and namespace in other branches
  1. 6.3 vud_node/vud_node.install \vud_node_uninstall()
  2. 6.2 vud_node/vud_node.install \vud_node_uninstall()

Implementation of hook_uninstall().

File

vud_node/vud_node.install, line 11
Install, update and uninstall functions for the Vote Up/Down Node module.

Code

function vud_node_uninstall() {
  variable_del('vud_node_types');
  variable_del('vud_node_widget');
  variable_del('vud_node_widget_show');
  variable_del('vud_node_votes');
  variable_del('vud_node_reset');
  variable_del('vud_node_widget_vote_on_teaser');
}