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

Contents of /contributions/modules/fivestarextra/fivestarextra.install

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Oct 26 18:53:52 2008 UTC (13 months ago) by likeless
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA3, DRUPAL-6--1-0-BETA2, DRUPAL-6--1-0-BETA1, DRUPAL-6--1-1, HEAD
File MIME type: text/x-php
Initial commit of fivestarextra module, adding files.
1 <?php
2 // $Id$
3
4 /**
5 * Implementation of hook_uninstall().
6 */
7 function fivestarextraextra_uninstall() {
8 //Get rid of our variables
9 $variables = array('fivestarextra_stars','fivestarextra_labels_enable','fivestarextra_style','fivestarextra_text','fivestarextra_title','fivestarextra_unvote','fivestarextra_feedback','fivestarextra_position','fivestarextra_labels','fivestarextra_enable');
10 foreach ($variables as $variable) {
11 variable_del($variable .'_comment');
12 variable_del($variable .'_user');
13 };
14 }

  ViewVC Help
Powered by ViewVC 1.1.2