webform_addmore.install in Webform Add More 7
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
*/
/**
* Implements hook_uninstall().
*/
function webform_addmore_uninstall() {
db_delete('variable')
->condition('name', 'webform_addmore%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache');
drupal_set_message(t('Webform Add More variables removed.'));
}
Functions
Name![]() |
Description |
---|---|
webform_addmore_uninstall | Implements hook_uninstall(). |