function book_copy_install in Book Copy 6
Same name and namespace in other branches
- 7 book_copy.install \book_copy_install()
Implementation of hook_install().
File
- ./
book_copy.install, line 6
Code
function book_copy_install() {
// Create tables.
drupal_install_schema('book_copy');
db_query("UPDATE {system} SET weight = 15 WHERE name = 'book_copy'");
// our module should run after any book modules
}