You are here

imagepicker_postlet.install in Image Picker 6.2

imagepicker_postlet module install, update and uninstall functions.

File

contribs/imagepicker_postlet/imagepicker_postlet.install
View source
<?php

/**
 * @file
 * imagepicker_postlet module install, update and uninstall functions.
 */

/**
 * Implementation of hook_uninstall().
 */
function imagepicker_postlet_uninstall() {

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

Functions

Namesort descending Description
imagepicker_postlet_uninstall Implementation of hook_uninstall().