You are here

function email_enable in Email Field 6

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./email.install, line 25

Code

function email_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'email');
}