You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.3 KiB
86 lines
3.3 KiB
<?php
|
|
if (file_exists(__DIR__."/../pp-config.php")) {
|
|
if (file_exists(__DIR__.'/../maintenance.lock')) {
|
|
if (file_exists(__DIR__.'/../pp-include/pp-maintenance.php')) {
|
|
include(__DIR__."/../pp-include/pp-maintenance.php");
|
|
}else{
|
|
die('System is under maintenance. Please try again later.');
|
|
}
|
|
exit();
|
|
}else{
|
|
if (file_exists(__DIR__.'/../pp-include/pp-controller.php')) {
|
|
include(__DIR__."/../pp-include/pp-controller.php");
|
|
}else{
|
|
echo 'System is under maintenance. Please try again later.';
|
|
exit();
|
|
}
|
|
|
|
if (file_exists(__DIR__.'/../pp-include/pp-model.php')) {
|
|
include(__DIR__."/../pp-include/pp-model.php");
|
|
}else{
|
|
echo 'System is under maintenance. Please try again later.';
|
|
exit();
|
|
}
|
|
|
|
if (file_exists(__DIR__.'/../pp-include/pp-view.php')) {
|
|
include(__DIR__."/../pp-include/pp-view.php");
|
|
}else{
|
|
echo 'System is under maintenance. Please try again later.';
|
|
exit();
|
|
}
|
|
}
|
|
}else{
|
|
?>
|
|
<script>
|
|
location.href="https://<?php echo $_SERVER['HTTP_HOST']?>/install/";
|
|
</script>
|
|
<?php
|
|
exit();
|
|
}
|
|
|
|
if (!defined('pp_allowed_access')) {
|
|
die('Direct access not allowed');
|
|
}
|
|
|
|
if(isset($_GET['name'])){
|
|
$payment_id = escape_string($_GET['name']);
|
|
|
|
if($payment_id == ""){
|
|
$error_title = "Invalid Payment";
|
|
$error_description = "The transaction you're trying to use is not valid. Please check your details and try again, or contact support for help.";
|
|
|
|
include(__DIR__."/../error.php");
|
|
|
|
exit();
|
|
}else{
|
|
$transaction_details = pp_get_transation($payment_id);
|
|
$setting = pp_get_settings();
|
|
|
|
if($transaction_details['status'] == true){
|
|
theme_include('gateway', $setting['response'][0]['gateway_theme'], $setting['response'][0]['gateway_theme'].'-class.php', $payment_id, 'payment_id');
|
|
|
|
$function = str_replace('-', '_', $setting['response'][0]['gateway_theme']) . '_checkout_load';
|
|
if (function_exists($function)) {
|
|
call_user_func($function, $payment_id);
|
|
}
|
|
|
|
if (function_exists('pp_trigger_hook')) {
|
|
pp_trigger_hook('pp_payment_initialize');
|
|
}
|
|
}else{
|
|
$error_title = "Invalid Payment";
|
|
$error_description = "The transaction you're trying to use is not valid. Please check your details and try again, or contact support for help.";
|
|
|
|
include(__DIR__."/../error.php");
|
|
|
|
exit();
|
|
}
|
|
}
|
|
}else{
|
|
$error_title = "Invalid Payment";
|
|
$error_description = "The transaction you're trying to use is not valid. Please check your details and try again, or contact support for help.";
|
|
|
|
include(__DIR__."/../error.php");
|
|
|
|
exit();
|
|
}
|