fieldset_helper_uninstall

contrib-jrockowitz/fieldset_helper/fieldset_helper.install, line 25

Versions
6
fieldset_helper_uninstall()

Implementation of hook_uninstall().

Code

<?php
function fieldset_helper_uninstall() {
  // Delete all the fieldset_helper variables and then clear the variable cache
  db_query("DELETE FROM {variable} WHERE name LIKE 'fieldset_helper_%'");
  cache_clear_all('variables', 'cache');

  drupal_uninstall_schema('fieldset_helper');
}
?>