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

Contents of /contributions/modules/checkmail/checkmail.install

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Aug 26 18:04:14 2008 UTC (15 months ago) by oadaeh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +30 -0 lines
File MIME type: text/x-php
Updating HEAD with current files.
1 <?php
2 // $Id: checkmail.install,v 1.1.2.1 2008/08/26 02:09:36 oadaeh Exp $
3
4 /**
5 * @file
6 * The uninstall file for Checkmail, which removes it's variables.
7 *
8 * This module generates a page and a block for a single user which prints the
9 * number and size of messages in a POP3 e-mail account.
10 */
11
12 function checkmail_uninstall() {
13 variable_del('checkmail_account_info');
14 variable_del('checkmail_block_cache');
15 variable_del('checkmail_block_subject');
16 variable_del('checkmail_cache_mem');
17 variable_del('checkmail_cache_num');
18 variable_del('checkmail_checked_time');
19 variable_del('checkmail_encrypt_session');
20 variable_del('checkmail_login_id');
21 variable_del('checkmail_login_password');
22 variable_del('checkmail_number_of_messages');
23 variable_del('checkmail_number_of_unread_messages');
24 variable_del('checkmail_secure_log_in');
25 variable_del('checkmail_server_address');
26 variable_del('checkmail_server_port');
27 variable_del('checkmail_server_type');
28 variable_del('checkmail_size_of_mailbox');
29 variable_del('checkmail_validate_cert');
30 }

  ViewVC Help
Powered by ViewVC 1.1.2