You are here

uc_recurring.uc_payment_pack.inc in UC Recurring Payments and Subscriptions 6.2

Same filename and directory in other branches
  1. 7.2 includes/uc_recurring.uc_payment_pack.inc

Uc recurring implementation for the payment pack module.

File

includes/uc_recurring.uc_payment_pack.inc
View source
<?php

/**
 * @file
 * Uc recurring implementation for the payment pack module.
 */

/**
 * Implementation of hook_recurring_info().
 */
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;
}

Functions