book_uninstall
- Versions
- 5 – 7
book_uninstall()
Implementation of hook_uninstall().
Code
modules/book/book.install, line 16
<?php
function book_uninstall() {
// Delete menu links.
db_query("DELETE FROM {menu_links} WHERE module = 'book'");
menu_cache_clear_all();
// Remove tables.
drupal_uninstall_schema('book');
}
?>Login or register to post comments 