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

Contents of /contributions/modules/cumulus/cumulus.install

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Nov 2 19:19:47 2008 UTC (12 months, 3 weeks ago) by lut4rp
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5, DRUPAL-6--1
File MIME type: text/x-php
Initial commit of Cumulus.
1 <?php
2 // $Id$
3
4 /**
5 * @file
6 * The install file for cumulus.module
7 */
8
9 /**
10 * Implementation of hook_install().
11 */
12 function cumulus_install() {
13 drupal_install_schema('cumulus');
14 }
15
16 /**
17 * Implementation of hook_schema().
18 */
19 function cumulus_schema() {
20 return array();
21 }
22
23 /**
24 * Implementation of hook_uninstall().
25 */
26 function cumulus_uninstall() {
27 drupal_uninstall_schema('cumulus');
28 db_query("DELETE FROM {variable} WHERE name LIKE 'cumulus_%'");
29 }
30

  ViewVC Help
Powered by ViewVC 1.1.2