You are here

function pdfthumb_uninstall in PDFThumb 7

Implements hook_uninstall().

File

./pdfthumb.install, line 49
Install, update and uninstall functions for the PDFThumb module.

Code

function pdfthumb_uninstall() {
  db_delete('variable')
    ->condition('name', 'pdfthumb_%', 'LIKE')
    ->execute();
}