-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add payid_au, easypaisa_pk, jazzcash_pk, and konnect_pk
- Loading branch information
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/* | ||
Plugin Name: Easypaisa for WHMCS | ||
Description: Easypaisa payment gateway plugin for WHMCS | ||
Author: Payssion | ||
Author URI: https://www.payssion.com | ||
*/ | ||
|
||
require_once realpath(dirname(__FILE__)) . "/payssion/payssion.php"; | ||
|
||
function payssioneasypaisapk_config() { | ||
return Payssion::getConfig('Easypaisa'); | ||
} | ||
|
||
function payssioneasypaisapk_link($params) { | ||
return Payssion::getLink($params, 'easypaisa_pk'); | ||
} | ||
|
||
function payssioneasypaisapk_refund($params) { | ||
return Payssion::refund($params); | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/* | ||
Plugin Name: JazzCash for WHMCS | ||
Description: JazzCash payment gateway plugin for WHMCS | ||
Author: Payssion | ||
Author URI: https://www.payssion.com | ||
*/ | ||
|
||
require_once realpath(dirname(__FILE__)) . "/payssion/payssion.php"; | ||
|
||
function payssionjazzcashpk_config() { | ||
return Payssion::getConfig('JazzCash'); | ||
} | ||
|
||
function payssionjazzcashpk_link($params) { | ||
return Payssion::getLink($params, 'jazzcash_pk'); | ||
} | ||
|
||
function payssionjazzcashpk_refund($params) { | ||
return Payssion::refund($params); | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/* | ||
Plugin Name: Konnect for WHMCS | ||
Description: Konnect payment gateway plugin for WHMCS | ||
Author: Payssion | ||
Author URI: https://www.payssion.com | ||
*/ | ||
|
||
require_once realpath(dirname(__FILE__)) . "/payssion/payssion.php"; | ||
|
||
function payssionkonnectpk_config() { | ||
return Payssion::getConfig('Konnect'); | ||
} | ||
|
||
function payssionkonnectpk_link($params) { | ||
return Payssion::getLink($params, 'konnect_pk'); | ||
} | ||
|
||
function payssionkonnectpk_refund($params) { | ||
return Payssion::refund($params); | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
/* | ||
Plugin Name: PayID for WHMCS | ||
Description: PayID payment gateway plugin for WHMCS | ||
Author: Payssion | ||
Author URI: https://www.payssion.com | ||
*/ | ||
|
||
require_once realpath(dirname(__FILE__)) . "/payssion/payssion.php"; | ||
|
||
function payssionpayidau_config() { | ||
return Payssion::getConfig('PayID'); | ||
} | ||
|
||
function payssionpayidau_link($params) { | ||
return Payssion::getLink($params, 'payid_au'); | ||
} | ||
|
||
function payssionpayidau_refund($params) { | ||
return Payssion::refund($params); | ||
} | ||
|
||
?> |