/[drupal]/contributions/modules/refresh/refresh.install
ViewVC logotype

Contents of /contributions/modules/refresh/refresh.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download) (as text)
Tue Oct 16 18:42:01 2007 UTC (2 years, 1 month ago) by karna
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +2 -1 lines
File MIME type: text/x-php
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