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

Contents of /contributions/modules/imap_auth/imap_auth.install

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


Revision 1.2 - (show annotations) (download) (as text)
Mon Sep 3 07:07:14 2007 UTC (2 years, 2 months ago) by yecarrillo
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +17 -0 lines
File MIME type: text/x-php
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