You are here

function webform_hints_uninstall in Webform Hints 7

Same name and namespace in other branches
  1. 6 webform_hints.install \webform_hints_uninstall()

Implements hook_uninstall().

File

./webform_hints.install, line 19
Installation file for the Webform Hints module.

Code

function webform_hints_uninstall() {
  variable_del('webform_hints_forms');
  variable_del('webform_hints_required');
  variable_del('webform_hints_legacy_support');
  variable_del('webform_hints_use_description');
}