function webform_template_uninstall in Webform Template 7.4
Implements hook_uninstall().
File
- ./
webform_template.install, line 27 - Install, update, and uninstall functions for the Foo Bar module.
Code
function webform_template_uninstall() {
$vars = array(
'webform_template_src',
'webform_template_dest',
'webform_template_lang',
'webform_template_defeat_nodeaccess',
'webform_template_collapsible',
);
foreach ($vars as $var) {
variable_del($var);
}
}