payment.xml 895 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <payment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
  10. <credit_cards>
  11. <type id="SM" order="60">
  12. <label>Switch/Maestro</label>
  13. </type>
  14. <type id="SO" order="61">
  15. <label>Solo</label>
  16. </type>
  17. </credit_cards>
  18. <groups>
  19. <group id="paypal">
  20. <label>PayPal</label>
  21. </group>
  22. </groups>
  23. <methods>
  24. <method name="paypal_direct">
  25. <allow_multiple_address>1</allow_multiple_address>
  26. </method>
  27. <method name="paypal_billing_agreement">
  28. <allow_multiple_address>1</allow_multiple_address>
  29. </method>
  30. </methods>
  31. </payment>