WHMCS / sample-gateway-module

Sample Third Party Payment Gateway Module for WHMCS
MIT License
59 stars 94 forks source link

More than one payment gateway in one plugin #19

Closed dbrax closed 3 years ago

dbrax commented 3 years ago

Is it possible to put more than one payment gateway on a single module ??

jokerrs commented 3 years ago

It is, you can manipulate with a form which one needs to be populated in the admin area. And you can create the HTML form with a select input that will choose between multiple gateways.

For example, you can make a

<select name="payment-method" id="payment-method">
  <option value="bank1">Bank 1</option>
  <option value="bank2">Bank 2</option>
  <option value="bank3">Bank 3</option>
</select>

With some javascript which one will automatically make a form or hidden input for every bank.

dbrax commented 3 years ago

This is great will work on this thank you very much.