function book_uninstall

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/book/book.install \book_uninstall()

Implementation of hook_uninstall().

Archivo

drupal-6.x/modules/book/book.install, line 16

Código

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');
}