You are here

function nodereference_disable in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 modules/nodereference/nodereference.install \nodereference_disable()
  2. 6 modules/nodereference/nodereference.install \nodereference_disable()

Implementation of hook_disable().

Notify content module when this module is disabled.

File

modules/nodereference/nodereference.install, line 35
Implementation of hook_install().

Code

function nodereference_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'nodereference');
}