You are here

function vud_uninstall in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 6.3 vud.install \vud_uninstall()
  2. 7.2 vud.install \vud_uninstall()
  3. 7 vud.install \vud_uninstall()

Implementation of hook_uninstall().

File

./vud.install, line 25
Install, update and uninstall functions for the Vote Up/Down core module.

Code

function vud_uninstall() {
  drupal_uninstall_schema('vud');
  variable_del('vud_tag');
  variable_del('vud_reset_vote');
}