| 1 |
<?php
|
| 2 |
// $Id: r4032login.install,v 1.1.4.2 2008/10/06 15:16:33 deekayen Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* Implementation of hook_enable().
|
| 6 |
*/
|
| 7 |
function r4032login_enable() {
|
| 8 |
variable_set('site_403', 'r4032login');
|
| 9 |
}
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Implementation of hook_disable().
|
| 13 |
*/
|
| 14 |
function r4032login_disable() {
|
| 15 |
variable_del('site_403');
|
| 16 |
}
|
| 17 |
|
| 18 |
/**
|
| 19 |
* Implementation of hook_uninstall().
|
| 20 |
*/
|
| 21 |
function r4032login_uninstall() {
|
| 22 |
variable_del('r4032login_display_denied_message');
|
| 23 |
variable_del('r4032login_user_register_message');
|
| 24 |
}
|