You are here

function uc_reports_uninstall in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_reports/uc_reports.install \uc_reports_uninstall()

Implements hook_uninstall().

File

uc_reports/uc_reports.install, line 11
Install, update and uninstall functions for the uc_reports module.

Code

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