function hook_recurring_renewal_pending in UC Recurring Payments and Subscriptions 6.2
Same name and namespace in other branches
- 7.2 uc_recurring.api.php \hook_recurring_renewal_pending()
Act on recurring renewal event.
Parameters
$order: The order object.
$fee: The recurring Fee object.
2 functions implement hook_recurring_renewal_pending()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- uc_recurring_order_recurring_renewal_pending in modules/
uc_recurring_order/ uc_recurring_order.module - Implements hook_recurring_renewal_pending()
- uc_recurring_product_recurring_renewal_pending in modules/
uc_recurring_product/ uc_recurring_product.module - On renewal we need to add a product to the order that matches the recurring fee.
File
- ./
uc_recurring.api.php, line 100
Code
function hook_recurring_renewal_pending(&$order, &$fee) {
}