You are here

webform_addmore.install in Webform Add More 6

Same filename and directory in other branches
  1. 7.2 webform_addmore.install
  2. 7 webform_addmore.install

Webform Add More installation routines

File

webform_addmore.install
View source
<?php

// $Id$

/**
 * @file
 * Webform Add More installation routines
 */

/**
 * Implementation of hook_uninstall().
 */
function webform_addmore_uninstall() {

  // Delete settings from varible table.
  $sql = "DELETE FROM {variable} WHERE name LIKE 'webform_addmore%'";
  db_query($sql);
  cache_clear_all('variables', 'cache');
  drupal_set_message(t('Webform Add More variables removed.'));
}

Functions

Namesort descending Description
webform_addmore_uninstall Implementation of hook_uninstall().