You are here

function button_field_disable in Button Field 6

Implementation of hook_disable().

Notify content module when this module is disabled.

File

./button_field.install, line 40
Notify CCK when this module is enabled, disabled, installed, and uninstalled so CCK can do any necessary preparation or cleanup.

Code

function button_field_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'button_field');
}