├── LICENSE ├── Model ├── Config.php └── Config │ └── Source │ └── AvailablePaymentMethods.php ├── Plugin ├── AddPaymentMethodListenerPlugin.php ├── AvailableMethodsFilterPlugin.php └── Config │ └── AddFilterField.php ├── README.md ├── composer.json ├── etc ├── adminhtml │ └── di.xml ├── frontend │ └── di.xml └── module.xml └── registration.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Config/Source/AvailablePaymentMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/Model/Config/Source/AvailablePaymentMethods.php -------------------------------------------------------------------------------- /Plugin/AddPaymentMethodListenerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/Plugin/AddPaymentMethodListenerPlugin.php -------------------------------------------------------------------------------- /Plugin/AvailableMethodsFilterPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/Plugin/AvailableMethodsFilterPlugin.php -------------------------------------------------------------------------------- /Plugin/Config/AddFilterField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/Plugin/Config/AddFilterField.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoliber/m2-payment-restrictions/HEAD/registration.php --------------------------------------------------------------------------------