Parent Directory
|
Revision Log
|
Revision Graph
|
Patch
| revision 1.1.4.1, Sun Jun 29 19:37:15 2008 UTC | revision 1.1.4.2, Sat Jan 10 19:09:58 2009 UTC | |
|---|---|---|
| # | Line 0 | Line 1 |
| 1 | <?php | |
| 2 | // $Id: comment_closer.install,v 1.1.2.3 2009/01/10 19:07:05 rmiddle Exp $ | |
| 3 | /** | |
| 4 | * @file | |
| 5 | */ | |
| 6 | ||
| 7 | /** | |
| 8 | * Implementation of hook_uninstall(). | |
| 9 | */ | |
| 10 | function comment_closer_uninstall() { | |
| 11 | variable_del('comment_closer_age'); | |
| 12 | variable_del('comment_closer_cycle_period'); | |
| 13 | variable_del('comment_closer_next_date'); | |
| 14 | variable_del('comment_closer_types'); | |
| 15 | ||
| 16 | drupal_set_message(t('Comment Closer module uninstalled.')); | |
| 17 | } |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |