You are here

function galleryformatter_enable in Gallery formatter 6

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./galleryformatter.install, line 28
Notifies CCK of our module.

Code

function galleryformatter_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'galleryformatter');
}