You are here

function text_enable in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 modules/text/text.install \text_enable()
  2. 6 examples/simple_field.php \text_enable()
  3. 6 examples/example_field.php \text_enable()
  4. 6 modules/text/text.install \text_enable()

Implementation of hook_enable().

Notify content module when this module is enabled.

File

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

Code

function text_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'text');
}