You are here

function test_gateway_uc_payment_gateway in Ubercart 7.3

Implements hook_uc_payment_gateway().

See also

test_gateway.module

test_gateway_charge()

File

payment/uc_credit/tests/test_gateway.module, line 28
A dummy payment gateway to use for testing or as an example.

Code

function test_gateway_uc_payment_gateway() {
  $gateways['test_gateway'] = array(
    'title' => t('Test Gateway'),
    'description' => t('Process credit card payments through the Test Gateway.'),
    'credit' => 'test_gateway_charge',
  );
  return $gateways;
}