mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
24 lines
657 B
PHP
24 lines
657 B
PHP
<?php
|
|
|
|
global $global;
|
|
require_once $global['systemRootPath'] . 'plugin/YPTWallet/YPTWalletPlugin.php';
|
|
|
|
class YPTWalletRazorPay extends YPTWalletPlugin{
|
|
|
|
public function getAprovalButton() {
|
|
global $global;
|
|
include $global['systemRootPath'].'plugin/YPTWallet/plugins/YPTWalletRazorPay/confirmButton.php';
|
|
}
|
|
|
|
public function getRecurrentAprovalButton() {
|
|
global $global;
|
|
include $global['systemRootPath'].'plugin/YPTWallet/plugins/YPTWalletRazorPay/confirmRecurrentButton.php';
|
|
}
|
|
|
|
public function getEmptyDataObject() {
|
|
global $global;
|
|
$obj = new stdClass();
|
|
return $obj;
|
|
}
|
|
|
|
}
|