tklein / module-payment-method-availability
This module allows you to define payment method availability dynamically.
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- magento/framework: >=100.0.2
- magento/module-checkout: >=100.0.2
- magento/module-payment: >=100.1.3
- magento/module-quote: >=100.0.2
- magento/module-store: >=100.0.2
Requires (Dev)
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2020-12-09 16:14:04 UTC
README
This module allows you to define payment method availability dynamically. The free source is available at the github repository.
THIS REPOSITORY HAS BEEN ARCHIVED.
PLEASE, READ THE "DEVELOPERS" SECTION.
THIS MODULE IS A FALSE ANSWER TO A FALSE PROBLEM.
Setup
composer require tklein/module-payment-method-availability
Go to your Magento root, then run the following magento command:
php bin/magento setup:upgrade
If you are in production mode, do not forget to recompile and redeploy the static resources, or to use the --keep-generated
option.
Settings
Customize the module without efforts.
Administrators
The following settings are available at Stores > Configuration > Sales > Payment Methods > Other Payment Methods > Default Payment Method Settings
:
- Payment Method Availability: Manage the payment methods availability with the minimum and maximum allowed amount.
Developers
Please see the following API first, maybe it could resolve your issue:
<type name="Magento\Payment\Model\Checks\SpecificationFactory"> <arguments> <argument name="mapping" xsi:type="array"> <item name="country" xsi:type="object">Magento\Payment\Model\Checks\CanUseForCountry</item> <item name="currency" xsi:type="object">Magento\Payment\Model\Checks\CanUseForCurrency</item> <item name="checkout" xsi:type="object">Magento\Payment\Model\Checks\CanUseCheckout</item> <item name="internal" xsi:type="object">Magento\Payment\Model\Checks\CanUseInternal</item> <item name="total" xsi:type="object">Magento\Payment\Model\Checks\TotalMinMax</item> <item name="zero_total" xsi:type="object">Magento\Payment\Model\Checks\ZeroTotal</item> </argument> </arguments> </type>
Where the specifications implements the following interface: \Magento\Payment\Model\Checks\SpecificationInterface
.
In the case of the gateway API, please refer to the validator pool:
Magento\Payment\Gateway\Validator\ValidatorPool
Support
- If you have any issue with this code, feel free to open an issue.
- If you want to contribute to this project, feel free to create a pull request.
Authors
- Thomas Klein - Maintainer - It's me!
Licence
This project is licensed under the MIT License - see the LICENSE file for details.
That's all folks!