vote_up_down.install in Vote Up/Down 5
Same filename and directory in other branches
File
vote_up_down.installView 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
| Name   | Description | 
|---|---|
| vote_up_down_uninstall | Implementation of hook_uninstall(). | 
