function uc_recurring_test_gateway_recurring_info in UC Recurring Payments and Subscriptions 7.2
Same name and namespace in other branches
- 6.2 includes/uc_recurring.test_gateway.inc \uc_recurring_test_gateway_recurring_info()
Implements hook_recurring_info().
File
- includes/
uc_recurring.test_gateway.inc, line 11 - Uc recurring implementation for the test gateway module.
Code
function uc_recurring_test_gateway_recurring_info() {
$items['test_gateway'] = array(
'name' => t('Test Gateway'),
'payment method' => 'credit',
'module' => 'uc_recurring',
'fee handler' => 'test_gateway',
'renew callback' => 'uc_recurring_test_gateway_renew',
'process callback' => 'uc_recurring_test_gateway_process',
'saved profile' => TRUE,
'menu' => array(
'charge' => UC_RECURRING_MENU_DEFAULT,
'edit' => UC_RECURRING_MENU_DEFAULT,
'cancel' => UC_RECURRING_MENU_DEFAULT,
),
);
return $items;
}