You are here

bookblock.install in Book Block 7

Same filename and directory in other branches
  1. 6 bookblock.install

Install, update and uninstall functions for the bookblock module.

File

bookblock.install
View 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

Namesort descending Description
bookblock_uninstall Implements hook_uninstall().