You are here

function noderelationships_disable in Node Relationships 6

Implementation of hook_disable().

File

./noderelationships.install, line 60
Implementation of installation/uninstallation hooks.

Code

function noderelationships_disable() {

  // Make sure cached data is discarded if the module is re-enabled again.
  module_load_include('inc', 'noderelationships');
  noderelationships_cache_clear();

  // Notify the content module.
  drupal_load('module', 'content');
  content_notify('disable', 'noderelationships');
}