fz152.install in FZ152 7
Installation and deinstallation hooks.
File
fz152.installView source
<?php
/**
 * @file
 * Installation and deinstallation hooks.
 */
/**
 * Implements hook_uninstall().
 */
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');
}Functions
| 
            Name | 
                  Description | 
|---|---|
| fz152_uninstall | Implements hook_uninstall(). |