You are here

vote_up_down.install in Vote Up/Down 5

Same filename and directory in other branches
  1. 6 vote_up_down.install

File

vote_up_down.install
View source
<?php

/**
 * Implementation of hook_uninstall().
 */
function vote_up_down_uninstall() {
  variable_del('vote_up_down_node_types');
  variable_del('vote_up_down_widget_style_node');
  variable_del('vote_up_down_widget_node');
  variable_del('vote_up_down_link_node');
  variable_del('vote_up_down_widget_style_comment');
  variable_del('vote_up_down_widget_comment');
  variable_del('vote_up_down_link_comment');
  variable_del('vote_up_down_tag');
  variable_del('vote_up_down_anonymous_vote');
  variable_del('vote_up_down_reset_vote');
  variable_del('userpoints_vote_up_down');
  variable_del('userpoints_actions');
}

Functions

Namesort descending Description
vote_up_down_uninstall Implementation of hook_uninstall().