function vote_up_down_uninstall in Vote Up/Down 5
Same name and namespace in other branches
- 6 vote_up_down.install \vote_up_down_uninstall()
Implementation of hook_uninstall().
File
- ./
vote_up_down.install, line 6
Code
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');
}