You are here

function alchemy_uninstall in Alchemy 7

Same name and namespace in other branches
  1. 6 alchemy.install \alchemy_uninstall()

Implements hook_uninstall().

File

./alchemy.install, line 19
Install, update and uninstall functions for the alchemy module.

Code

function alchemy_uninstall() {

  // TODO The drupal_uninstall_schema functions are called automatically in D7.
  // drupal_uninstall_schema('alchemy')
  drupal_set_message(t('Alchemy has been uninstalled.'));
}