Parent Directory
|
Revision Log
|
Revision Graph
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 |