You are here

function markup_disable in Markup 6

Implements hook_disable().

Notify content module when this module is disabled.

File

./markup.install, line 39
Install, update and uninstall functions for Markup module.

Code

function markup_disable() {
  drupal_load('module', 'content');
  content_notify('disable', 'markup');
}