You are here

uc_credit.install in Ubercart 6.2

Install file for the credit module... this is mostly legacy code now.

File

payment/uc_credit/uc_credit.install
View source
<?php

/**
 * @file
 * Install file for the credit module... this is mostly legacy code now.
 */
function uc_credit_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'uc_credit_%%'");
}
function uc_credit_update_last_removed() {
  return 2;
}
function uc_credit_update_6000() {
  $ret = array();
  db_drop_table($ret, 'uc_payment_credit');
  return $ret;
}

Functions

Namesort descending Description
uc_credit_uninstall @file Install file for the credit module... this is mostly legacy code now.
uc_credit_update_6000
uc_credit_update_last_removed