You are here

function imagepicker_uninstall in Image Picker 5.2

Same name and namespace in other branches
  1. 5 imagepicker.install \imagepicker_uninstall()
  2. 6.2 imagepicker.install \imagepicker_uninstall()
  3. 7 imagepicker.install \imagepicker_uninstall()

File

./imagepicker.install, line 81
imagepicker install, update and uninstall functions

Code

function imagepicker_uninstall() {
  db_query('DROP TABLE {imagepicker};');
  db_query('DROP TABLE {imagepicker_user_groups};');
  db_query('DROP TABLE {imagepicker_group_images};');
  db_query("DELETE FROM {sequences} WHERE name = 'imagepicker_img_id';");
  db_query("DELETE FROM {variable} WHERE name LIKE 'imagepicker_%';");
}