You are here

function vars_test_uninstall in Variable API 7

Same name and namespace in other branches
  1. 6.2 tests/vars_test.install \vars_test_uninstall()
  2. 6 tests/vars_test.install \vars_test_uninstall()
  3. 7.2 tests/vars_test.install \vars_test_uninstall()

Implements hook_uninstall().

File

tests/vars_test.install, line 21
Install, update and uninstall functions for the Variable API test module.

Code

function vars_test_uninstall() {
  drupal_load('module', 'vars_test');
  $vars = new VarsTestVars();
  $vars
    ->removeDefaults();
}