function book_install
Same name and namespace in other branches
- 7.x drupal-7.x/modules/book/book.install \book_install()
Implementation of hook_install().
Archivo
- drupal-6.x/
modules/ book/ book.install, line 6
Código
function book_install() {
// Create tables.
drupal_install_schema('book');
// Add the node type.
_book_install_type_create();
}