You are here

compact_forms.install in Compact Forms 7

Same filename and directory in other branches
  1. 6 compact_forms.install

Installation functions for Compact Forms module.

File

compact_forms.install
View source
<?php

/**
 * @file
 * Installation functions for Compact Forms module.
 */

/**
 * Implements hook_uninstall().
 */
function compact_forms_uninstall() {
  variable_del('compact_forms_colons');
  variable_del('compact_forms_descriptions');
  variable_del('compact_forms_field_size');
  variable_del('compact_forms_ids');
  variable_del('compact_forms_stars');
}

/**
 * Remove 'compact_forms_colons' variable.
 */
function compact_forms_update_7000() {
  variable_del('compact_forms_colons');
}

Functions

Namesort descending Description
compact_forms_uninstall Implements hook_uninstall().
compact_forms_update_7000 Remove 'compact_forms_colons' variable.