bookblock.install in Book Block 7
Same filename and directory in other branches
Install, update and uninstall functions for the bookblock module.
File
bookblock.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the bookblock module.
*/
/**
* Implements hook_uninstall().
*/
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.
}
Functions
Name | Description |
---|---|
bookblock_uninstall | Implements hook_uninstall(). |