You are here

function email_disable in Email Field 6

Implementation of hook_disable().

Notify content module when this module is disabled.

File

./email.install, line 35

Code

function email_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'email');
}