function _uc_coupon_map_restriction in Ubercart Discount Coupons 7.2
Same name and namespace in other branches
- 6 uc_coupon.admin.inc \_uc_coupon_map_restriction()
- 7.3 uc_coupon.admin.inc \_uc_coupon_map_restriction()
1 string reference to '_uc_coupon_map_restriction'
- uc_coupon_add_form_submit in ./
uc_coupon.admin.inc - Coupon form submit handler.
File
- ./
uc_coupon.admin.inc, line 1101 - Discount Coupons administration pages.
Code
function _uc_coupon_map_restriction(&$value, $key, $prefix) {
if ($value && preg_match('/\\[' . $prefix . ':(\\d+)\\]$/', $value, $matches)) {
$value = $matches[1];
}
else {
$value = FALSE;
}
}