| 1 |
<?php
|
| 2 |
// $Id: vote_up_down.install,v 1.3 2008/09/30 17:51:43 lut4rp Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* The .install file, that contains the schema for the vote_up_down.module
|
| 7 |
*/
|
| 8 |
|
| 9 |
/**
|
| 10 |
* Implementation of hook_uninstall().
|
| 11 |
*/
|
| 12 |
function vote_up_down_uninstall() {
|
| 13 |
// Remove tables.
|
| 14 |
drupal_uninstall_schema('vote_up_down');
|
| 15 |
|
| 16 |
variable_del('vote_up_down_node_types');
|
| 17 |
variable_del('vote_up_down_widget_style_node');
|
| 18 |
variable_del('vote_up_down_widget_node');
|
| 19 |
variable_del('vote_up_down_link_node');
|
| 20 |
variable_del('vote_up_down_widget_style_comment');
|
| 21 |
variable_del('vote_up_down_widget_comment');
|
| 22 |
variable_del('vote_up_down_link_comment');
|
| 23 |
variable_del('vote_up_down_tag');
|
| 24 |
variable_del('vote_up_down_anonymous_vote');
|
| 25 |
variable_del('vote_up_down_reset_vote');
|
| 26 |
variable_del('userpoints_vote_up_down');
|
| 27 |
variable_del('userpoints_actions');
|
| 28 |
}
|