Parent Directory
|
Revision Log
|
Revision Graph
Initial commit: nocase is a simple module that allows for case insensitive Drupal passwords.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_install(). |
| 6 | */ |
| 7 | function nocase_install() { |
| 8 | drupal_set_message(t('Nocase module: Installation script complete.')); |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Implementation of hook_uninstall(). |
| 13 | */ |
| 14 | function nocase_uninstall() { |
| 15 | drupal_set_message(t('Nocase module: Uninstallation script complete.')); |
| 16 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |