You are here

function uc_recurring_uc_payment_pack_recurring_info in UC Recurring Payments and Subscriptions 7.2

Same name and namespace in other branches
  1. 6.2 includes/uc_recurring.uc_payment_pack.inc \uc_recurring_uc_payment_pack_recurring_info()

Implements hook_recurring_info().

File

includes/uc_recurring.uc_payment_pack.inc, line 11
Uc recurring implementation for the payment pack module.

Code

function uc_recurring_uc_payment_pack_recurring_info() {
  $items['check'] = array(
    'name' => t('Check'),
    'payment method' => 'check',
    'module' => 'uc_recurring',
    'fee handler' => 'default',
  );
  $items['cod'] = array(
    'name' => t('COD'),
    'payment method' => 'cod',
    'module' => 'uc_recurring',
    'fee handler' => 'default',
  );
  $items['other'] = array(
    'name' => t('Other'),
    'payment method' => 'other',
    'module' => 'uc_recurring',
    'fee handler' => 'default',
  );
  return $items;
}