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

Contents of /contributions/modules/compact_forms/compact_forms.install

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


Revision 1.1 - (show annotations) (download) (as text)
Wed Sep 30 03:52:36 2009 UTC (8 weeks, 3 days ago) by sun
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
by sun: Ported to Drupal 7.
1 <?php
2 // $Id: compact_forms.admin.inc,v 1.3 2009/05/03 20:08:05 sun Exp $
3
4 /**
5 * @file
6 * Compact Forms installation functions.
7 */
8
9 /**
10 * Implementation of hook_uninstall().
11 */
12 function compact_forms_uninstall() {
13 variable_del('compact_forms_colons');
14 variable_del('compact_forms_stars');
15 variable_del('compact_forms_field_size');
16 variable_del('compact_forms_descriptions');
17 }
18
19 /**
20 * Remove 'compact_forms_colons' variable.
21 */
22 function compact_forms_update_7000() {
23 variable_del('compact_forms_colons');
24 }
25

  ViewVC Help
Powered by ViewVC 1.1.2