You are here

function webformblock_uninstall in Webform Block 6.3

Same name and namespace in other branches
  1. 6 webformblock.install \webformblock_uninstall()

Implementation of hook_uninstall().

Remove the schema corresponding to the webformblock module.

File

./webformblock.install, line 45
Webform Block module install file.

Code

function webformblock_uninstall() {
  drupal_uninstall_schema('webformblock');

  // Clear the cache tables.
  cache_clear_all('*', 'cache', TRUE);
  cache_clear_all('*', 'cache_block', TRUE);
  cache_clear_all('*', 'cache_page', TRUE);
}