You are here

function barcode_enable in Barcode 6

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./barcode.install, line 25
Implementation of hook_install().

Code

function barcode_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'barcode');
}