function uc_recurring_uc_credit in UC Recurring Payments and Subscriptions 7.2
Same name and namespace in other branches
- 6.2 includes/uc_recurring.uc_credit.inc \uc_recurring_uc_credit()
Credit card process and renew.
1 string reference to 'uc_recurring_uc_credit'
- uc_recurring_uc_credit_recurring_info in includes/
uc_recurring.uc_credit.inc - Implements hook_recurring_info().
File
- includes/
uc_recurring.uc_credit.inc, line 28 - Uc recurring implementation for the credit card module.
Code
function uc_recurring_uc_credit($order, &$fee, $op) {
// Invoke the correct payment method.
return uc_recurring_invoke($fee->fee_handler, $op, array(
$order,
&$fee,
));
}