You are here

function bookblock_uninstall in Book Block 7

Same name and namespace in other branches
  1. 6 bookblock.install \bookblock_uninstall()

Implements hook_uninstall().

File

./bookblock.install, line 11
Install, update and uninstall functions for the bookblock module.

Code

function bookblock_uninstall() {

  // Delete variable.
  variable_del('bookblock_books');

  // @todo Need to also delete the other variables 'bookblock_block_options_*'.
  // Probably want to do a 'global $conf' to start it off, then search for all those variables.
}