| 1 |
<?php
|
| 2 |
// $Id: subscriptions_content.install,v 1.5 2008/08/14 14:59:06 salvis Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Subscriptions Mail module installation.
|
| 7 |
*/
|
| 8 |
|
| 9 |
/**
|
| 10 |
* Implementation of hook_install().
|
| 11 |
*/
|
| 12 |
function subscriptions_mail_install() {
|
| 13 |
}
|
| 14 |
|
| 15 |
/**
|
| 16 |
* Implementation of hook_uninstall().
|
| 17 |
*/
|
| 18 |
function subscriptions_mail_uninstall() {
|
| 19 |
variable_del('subscriptions_number_of_mails');
|
| 20 |
variable_del('subscriptions_site_mail_name');
|
| 21 |
variable_del('subscriptions_site_mail');
|
| 22 |
variable_del('subscriptions_watchgood');
|
| 23 |
variable_del('subscriptions_watchstats');
|
| 24 |
}
|