function sheetnode_install in Sheetnode 6
Same name and namespace in other branches
- 5 sheetnode.install \sheetnode_install()
Implementation of hook_install().
File
- ./
sheetnode.install, line 6
Code
function sheetnode_install() {
drupal_install_schema('sheetnode');
if (module_exists('content')) {
drupal_load('module', 'content');
content_notify('install', 'sheetnode');
}
}