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