You are here

function imagepicker_uninstall in Image Picker 6.2

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

Implementation of hook_uninstall().

File

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

Code

function imagepicker_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('imagepicker');
  db_query("DELETE FROM {variable} WHERE name LIKE 'imagepicker_%';");
}