| 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 |
}
|