Parent Directory
|
Revision Log
|
Revision Graph
Initial Release for Drupal 5.10.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_install(). |
| 6 | */ |
| 7 | function role_login_install() { |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Implementation of hook_uninstall(). |
| 12 | */ |
| 13 | function role_login_uninstall() { |
| 14 | $vars = array( |
| 15 | 'role_login_roles', |
| 16 | 'role_login_link', |
| 17 | ); |
| 18 | foreach ($vars as $var) { |
| 19 | variable_del($var); |
| 20 | } |
| 21 | drupal_set_message(t('Role Login variables removed.')); |
| 22 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |