Parent Directory
|
Revision Log
|
Revision Graph
Install and uninstall functions added
| 1 | <?php |
| 2 | // $Id: imap_auth.install,v 1.1.2.1 2007/09/03 06:44:48 yecarrillo Exp $ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_install(). |
| 6 | */ |
| 7 | function imap_auth_install() { |
| 8 | require_once(dirname(__FILE__) .'/imap_auth.module'); |
| 9 | _imap_auth_install_check(); |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Implementation of hook_uninstall(). |
| 14 | */ |
| 15 | function imap_auth_uninstall() { |
| 16 | variable_del('imap_auth_enabled'); |
| 17 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |