You are here

function optionwidgets_enable in Content Construction Kit (CCK) 6.2

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

Implementation of hook_enable().

Notify content module when this module is enabled.

File

modules/optionwidgets/optionwidgets.install, line 25
Implementation of hook_install().

Code

function optionwidgets_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'optionwidgets');
}