function book_install

7.x book.install book_install()
6.x book.install book_install()

Implementation of hook_install().

File

drupal-6.x/modules/book/book.install, line 6

Code

function book_install() {
  // Create tables.
  drupal_install_schema('book');
  // Add the node type.
  _book_install_type_create();
}