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

Contents of /contributions/modules/user_disable/user_disable.install

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


Revision 1.1 - (show annotations) (download) (as text)
Sat Sep 20 14:01:04 2008 UTC (14 months ago) by cyberpunk
Branch: MAIN
CVS Tags: DRUPAL-5--1-0, HEAD
File MIME type: text/x-php
Initial commit of user_disable module for Drupal 5.x
1 <?php
2 /**
3 * Implementation of hook_install()
4 */
5 function user_disable_install() {
6 switch ($GLOBALS['db_type']) {
7 case 'mysqli':
8 case 'mysql':
9 break;
10 }
11 }
12 /**
13 * Implementation of hook_uninstall()
14 */
15 function user_disable_uninstall() {
16 switch ($GLOBALS['db_type']) {
17 case 'mysqli':
18 case 'mysql':
19 break;
20 }
21 }

  ViewVC Help
Powered by ViewVC 1.1.2