You are here

function _uc_coupon_sort_products in Ubercart Discount Coupons 7.3

Same name and namespace in other branches
  1. 6 uc_coupon.module \_uc_coupon_sort_products()
  2. 7.2 uc_coupon.module \_uc_coupon_sort_products()
1 string reference to '_uc_coupon_sort_products'
uc_coupon_calculate_discounts in ./uc_coupon.module
Find items that a coupon will apply to and calculate the discounts.

File

./uc_coupon.module, line 1089
Provides discount codes and gift certificates for Ubercart.

Code

function _uc_coupon_sort_products($a, $b) {
  if ($a->price == $b->price) {
    return 0;
  }
  return $a->price > $b->price ? 1 : -1;
}