You are here

function imagefield_crop_uninstall in Imagefield Crop 7.3

File

./imagefield_crop.install, line 19
Module installation file.

Code

function imagefield_crop_uninstall() {
  if (db_table_exists('imagefield_crop_preset')) {
    db_delete('imagefield_crop_preset');
  }
  if (db_table_exists('imagefield_crop_variants')) {
    db_delete('imagefield_crop_variants');
  }
}