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