You are here

function commerce_payment_dummy_offsite_commerce_payment_method_info in Commerce Core 7

Implements hook_commerce_payment_method_info().

File

modules/payment/tests/commerce_payment_dummy_offsite.module, line 11
Helper module for the customer payment tests.

Code

function commerce_payment_dummy_offsite_commerce_payment_method_info() {
  $payment_methods = array();
  $payment_methods['commerce_payment_dummy_offsite'] = array(
    'title' => t('Dummy Payment Method Offsite'),
    'short_title' => t('Dummy'),
    'description' => t('Dummy Payment Method with offsite enabled'),
    'terminal' => FALSE,
    'offsite' => TRUE,
    'active' => TRUE,
  );
  return $payment_methods;
}