You are here

function imagepicker_uninstall in Image Picker 7

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

Implements hook_uninstall().

File

./imagepicker.install, line 193
@author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function imagepicker_uninstall() {

  // DELETE FROM {variable} WHERE name LIKE 'imagepicker_%'

  #  $query = db_delete('variable')

  #    ->condition('name', 'imagepicker_%', 'LIKE')

  #    ->execute();
}