| 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 |
|