2007-04-10 10:10:27 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of hook_install().
|
|
|
|
*/
|
|
|
|
function dblog_install() {
|
2007-05-25 12:46:46 +00:00
|
|
|
// Create tables.
|
|
|
|
drupal_install_schema('dblog');
|
2007-04-10 10:10:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of hook_uninstall().
|
|
|
|
*/
|
|
|
|
function dblog_uninstall() {
|
2007-05-25 12:46:46 +00:00
|
|
|
// Remove tables.
|
|
|
|
drupal_uninstall_schema('dblog');
|
2007-04-10 10:10:27 +00:00
|
|
|
}
|