You are here

cumulus.install in Cumulus 6

Same filename and directory in other branches
  1. 5 cumulus.install
  2. 7 cumulus.install

The install file for cumulus.module

File

cumulus.install
View source
<?php

/**
 * @file
 * The install file for cumulus.module
 */

/**
 * Implementation of hook_install().
 */
function cumulus_install() {
  drupal_install_schema('cumulus');
}

/**
 * Implementation of hook_schema().
 */
function cumulus_schema() {
  return array();
}

/**
 * Implementation of hook_uninstall().
 */
function cumulus_uninstall() {
  drupal_uninstall_schema('cumulus');
  db_query("DELETE FROM {variable} WHERE name LIKE 'cumulus_%'");
}

Functions

Namesort descending Description
cumulus_install Implementation of hook_install().
cumulus_schema Implementation of hook_schema().
cumulus_uninstall Implementation of hook_uninstall().