function sheetnode_enable in Sheetnode 6
Implementation of hook_enable().
Notify content module when this module is enabled.
File
- ./
sheetnode.install, line 31
Code
function sheetnode_enable() {
if (module_exists('content')) {
drupal_load('module', 'content');
content_notify('enable', 'sheetnode');
}
}