You are here

function fieldgroup_uninstall in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 modules/fieldgroup/fieldgroup.install \fieldgroup_uninstall()
  2. 6 modules/fieldgroup/fieldgroup.install \fieldgroup_uninstall()

Implementation of hook_uninstall().

File

modules/fieldgroup/fieldgroup.install, line 19
Implementation of hook_install().

Code

function fieldgroup_uninstall() {
  drupal_load('module', 'content');
  drupal_uninstall_schema('fieldgroup');
  content_notify('uninstall', 'fieldgroup');
}