You are here

function tvi_uninstall in Taxonomy Views Integrator 6

Same name and namespace in other branches
  1. 7 tvi.install \tvi_uninstall()

Implements hook_uninstall().

See also

http://api.drupal.org/api/function/hook_uninstall/6

Related topics

File

./tvi.install, line 93
Installation file for TVI module.

Code

function tvi_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('tvi');

  // Delete variables
  variable_del('tvi_default_view_skip');
}