You are here

function sheetnode_disable in Sheetnode 6

Implementation of hook_disable().

Notify content module when this module is disabled.

File

./sheetnode.install, line 43

Code

function sheetnode_disable() {
  if (module_exists('content')) {
    drupal_load('module', 'content');
    content_notify('disable', 'sheetnode');
  }
}