function nodereference_count_disable in Nodereference Count 6
Implementation of hook_disable().
Notify content module when this module is disabled.
File
- ./
nodereference_count.install, line 42 - Install, update, and uninstall functions for the nodereference_count module.
Code
function nodereference_count_disable() {
drupal_load('module', 'content');
content_notify('disable', 'nodereference_count');
}