You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
1.6 KiB

  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
  9. <default>
  10. <payment>
  11. <fake>
  12. <model>Magento\TestModuleFakePaymentMethod\Gateway\Facade</model>
  13. <title>Fake Payment Method</title>
  14. <payment_action>authorize</payment_action>
  15. <active>1</active>
  16. <is_gateway>1</is_gateway>
  17. <can_use_checkout>1</can_use_checkout>
  18. <can_authorize>1</can_authorize>
  19. <can_capture>1</can_capture>
  20. <can_refund>1</can_refund>
  21. <can_void>1</can_void>
  22. <can_cancel>1</can_cancel>
  23. <cctypes>AE,VI,MC,DI,JCB,CUP,DN,MI</cctypes>
  24. <useccv>1</useccv>
  25. <order_status>processing</order_status>
  26. </fake>
  27. <fake_vault>
  28. <model>Magento\TestModuleFakePaymentMethod\Gateway\VaultFacade</model>
  29. <title>Fake Payment Method Vault</title>
  30. <active>1</active>
  31. <instant_purchase>
  32. <supported>1</supported>
  33. </instant_purchase>
  34. </fake_vault>
  35. <fake_no_model>
  36. <!-- This method on purpose does not have a 'model' node. -->
  37. <title>Fake Payment Method without &lt;model&gt;</title>
  38. <active>0</active>
  39. </fake_no_model>
  40. </payment>
  41. </default>
  42. </config>