Parent Directory
|
Revision Log
|
Revision Graph
code layout change
| 1 | <?php |
| 2 | // $Id: refresh.install,v 1.3 2007/10/11 21:07:15 karna Exp $ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_install(). |
| 6 | */ |
| 7 | function refresh_install() { |
| 8 | drupal_install_schema('refresh'); |
| 9 | drupal_set_message(t('Refresh was installed successfully.')); |
| 10 | } |
| 11 | |
| 12 | |
| 13 | /** |
| 14 | * Implementation of hook_uninstall(). |
| 15 | */ |
| 16 | function refresh_uninstall() { |
| 17 | drupal_uninstall_schema('refresh'); |
| 18 | drupal_set_message(t('Refresh was uninstalled successfully.')); |
| 19 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |