You are here

function imagecrop_uninstall in Image javascript crop 5

Same name and namespace in other branches
  1. 6 imagecrop.install \imagecrop_uninstall()
  2. 7 imagecrop.install \imagecrop_uninstall()

Implementation of hook_uninstall().

File

./imagecrop.install, line 96
Install file.

Code

function imagecrop_uninstall() {
  db_query("DROP TABLE {imagecrop}");
  db_query("DELETE FROM {system} where name = 'imagecrop'");
  variable_del('imagecrop_modules');
  variable_del('imagecrop_fields');
}