drupal/modules/book/book.install

19 lines
274 B
Plaintext

<?php
// $Id$
/**
* Implementation of hook_install().
*/
function book_install() {
// Create tables.
drupal_install_schema('book');
}
/**
* Implementation of hook_uninstall().
*/
function book_uninstall() {
// Remove tables.
drupal_uninstall_schema('book');
}