/[drupal]/contributions/modules/vote_up_down/vote_up_down.install
ViewVC logotype

Contents of /contributions/modules/vote_up_down/vote_up_down.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download) (as text)
Thu Oct 2 10:58:13 2008 UTC (13 months, 3 weeks ago) by lut4rp
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
Changes since 1.3: +6 -1 lines
File MIME type: text/x-php
Updated to code standards, many other small updates to files
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 }

  ViewVC Help
Powered by ViewVC 1.1.2