You are here

function book_install in Drupal 6

Same name and namespace in other branches
  1. 5 modules/book/book.install \book_install()
  2. 7 modules/book/book.install \book_install()

Implementation of hook_install().

File

modules/book/book.install, line 6

Code

function book_install() {

  // Create tables.
  drupal_install_schema('book');

  // Add the node type.
  _book_install_type_create();
}