You are here

function tvi_uninstall in Taxonomy Views Integrator 7

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

Implements hook_uninstall().

File

./tvi.install, line 28
Install, update, and uninstall functions for the tvi module.

Code

function tvi_uninstall() {
  db_delete('variable')
    ->condition('name', 'tvi_%', 'LIKE')
    ->execute();
}