You are here

function imagepicker_postlet_uninstall in Image Picker 6.2

Implementation of hook_uninstall().

File

contribs/imagepicker_postlet/imagepicker_postlet.install, line 11
imagepicker_postlet module install, update and uninstall functions.

Code

function imagepicker_postlet_uninstall() {

  // delete entries in the variable table
  db_query("DELETE FROM {variable} WHERE name LIKE 'imagepicker_postlet%'");
}