function book_copy_install in Book Copy 7
Same name and namespace in other branches
- 6 book_copy.install \book_copy_install()
Implements hook_install().
File
- ./
book_copy.install, line 10 - Install, update and uninstall functions for the book_copy module.
Code
function book_copy_install() {
db_update('system')
->fields(array(
'weight' => 15,
))
->condition('name', 'book_copy')
->execute();
}