You are here

function civicrm_entity_price_set_field_civicrm_entity_price_set_field_processor_info in CiviCRM Entity 7.2

Implements hook_civicrm_entity_price_set_field_processor_info().

Dummy processor

File

modules/civicrm_entity_price_set_field/includes/civicrm_entity_price_set_field.transaction.inc, line 217
CiviCRM Entity Price Set Field, Credit Card Transaction code

Code

function civicrm_entity_price_set_field_civicrm_entity_price_set_field_processor_info() {
  return array(
    'dummy' => array(
      'payment_processor_type' => 'Dummy',
      'callback' => 'civicrm_entity_price_set_field_transact_payment_processing',
    ),
    'authnet' => array(
      'payment_processor_type' => 'AuthNet',
      'callback' => 'civicrm_entity_price_set_field_transact_payment_processing',
    ),
    'payflowpro' => array(
      'payment_processor_type' => 'PayflowPro',
      'callback' => 'civicrm_entity_price_set_field_transact_payment_processing',
    ),
    'paypal' => array(
      'payment_processor_type' => 'PayPal',
      'callback' => 'civicrm_entity_price_set_field_transact_payment_processing',
    ),
    'iats' => array(
      'payment_processor_type' => 'iATS Payments Credit Card',
      'callback' => 'civicrm_entity_price_set_field_transact_payment_processing',
    ),
  );
}