function noderelationships_install in Node Relationships 6
Implementation of hook_install().
File
- ./
noderelationships.install, line 11 - Implementation of installation/uninstallation hooks.
Code
function noderelationships_install() {
// Install module database schema.
drupal_install_schema('noderelationships');
// Notify the content module.
drupal_load('module', 'content');
content_notify('install', 'noderelationships');
}