webform_addmore.install in Webform Add More 6
Same filename and directory in other branches
Webform Add More installation routines
File
webform_addmore.installView 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
Name![]() |
Description |
---|---|
webform_addmore_uninstall | Implementation of hook_uninstall(). |