1 book.install | book_uninstall() |
Implements hook_uninstall().
File
- core/
modules/ book/ book.install, line 18 - Install, update and uninstall functions for the book module.
Code
function book_uninstall() {
// Delete menu links.
db_delete('menu_links')
->condition('module', 'book')
->execute();
menu_cache_clear_all();
}