You are here

function fieldset_helper_uninstall in Fieldset helper 7.2

Same name and namespace in other branches
  1. 6.2 fieldset_helper.install \fieldset_helper_uninstall()
  2. 6 fieldset_helper.install \fieldset_helper_uninstall()

Implements hook_uninstall().

File

./fieldset_helper.install, line 28
Installation information for the 'Fieldset helper' module.

Code

function fieldset_helper_uninstall() {

  // Delete all the fieldset_helper variables and then clear the variable cache
  db_delete('variable')
    ->condition('name', 'fieldset_helper_%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}