You are here

function markup_view_enable in Markup 6

Implementation of hook_enable().

Notify content module when this module is enabled.

File

contrib/markup_view/markup_view.install, line 24
Implementation of hook_install().

Code

function markup_view_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'markup_view');
}