You are here

function fz152_uninstall in FZ152 7

Implements hook_uninstall().

File

./fz152.install, line 11
Installation and deinstallation hooks.

Code

function fz152_uninstall() {

  // It will also remove all submodules info, for sure.
  db_delete('variable')
    ->condition('name', 'fz152_%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}