config.xml 967 B

123456789101112131415161718192021222324252627
  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. <free>
  12. <active>1</active>
  13. <model>Magento\Payment\Model\Method\Free</model>
  14. <order_status>pending</order_status>
  15. <title>No Payment Information Required</title>
  16. <payment_action>authorize</payment_action>
  17. <allowspecific>0</allowspecific>
  18. <sort_order>1</sort_order>
  19. </free>
  20. <substitution>
  21. <active>0</active>
  22. <model>Magento\Payment\Model\Method\Substitution</model>
  23. <allowspecific>0</allowspecific>
  24. </substitution>
  25. </payment>
  26. </default>
  27. </config>