book_uninstall
- Versions
- 5 – 7
book_uninstall()
Implementation of hook_uninstall().
Code
modules/book/book.install, line 37
<?php
function book_uninstall() {
db_query('DROP TABLE {book}');
}
?>Login or register to post comments book_uninstall()Implementation of hook_uninstall().
modules/book/book.install, line 37
<?php
function book_uninstall() {
db_query('DROP TABLE {book}');
}
?>Login or register to post comments