Same name and namespace in other branches
  1. 5.x modules/book/book.install \book_install()
  2. 7.x 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();
}