function drupalchat_notifications_install in DrupalChat 6.2
Implementation of hook_install().
File
- drupalchat_notifications/
drupalchat_notifications.install, line 11 - Installation file for the DrupalChat Notifications module.
Code
function drupalchat_notifications_install() {
$success = drupal_install_schema('drupalchat_notifications');
if ($success) {
drupal_set_message(st('The DrupalChat Notifications module installed tables successfully.'));
}
else {
drupal_set_message(st('The installation of the DrupalChat Notifications module failed.'), 'error');
}
}