function button_field_uninstall in Button Field 6
Implementation of hook_uninstall().
File
- ./button_field.install, line 20 
- Notify CCK when this module is enabled, disabled, installed, and uninstalled so CCK can do any necessary preparation or cleanup.
Code
function button_field_uninstall() {
  drupal_load('module', 'content');
  content_notify('uninstall', 'button_field');
}