From b22ecae7aaa96df5f0e70a5bea87ee42feaf7d30 Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Tue, 2 Oct 2018 12:48:24 -0400 Subject: Revert "RT# 39340 - removed min_selfservice dir and merged into ng_selfservice" This reverts commit 77baa7974ade41e55d85de22e7d7a54273dd442f. --- min_selfservice/payment_webpay.php | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 min_selfservice/payment_webpay.php (limited to 'min_selfservice/payment_webpay.php') diff --git a/min_selfservice/payment_webpay.php b/min_selfservice/payment_webpay.php new file mode 100644 index 000000000..e4343fcb4 --- /dev/null +++ b/min_selfservice/payment_webpay.php @@ -0,0 +1,41 @@ + + +start_thirdparty(array( + 'session_id' => $_COOKIE['session_id'], + 'method' => 'CC', + 'amount' => $_POST['amount'], + )); + + include('elements/post_thirdparty.php'); + +} else { + + $payment_info = $freeside->payment_info( array( + 'session_id' => $_COOKIE['session_id'], + ) ); + + $tr_amount_fee = $freeside->mason_comp(array( + 'session_id' => $_COOKIE['session_id'], + 'comp' => '/elements/tr-amount_fee.html', + 'args' => [ 'amount', $payment_info['balance'] ], + )); + $tr_amount_fee = $tr_amount_fee['output']; + + include('elements/error.php'); ?> +
+ + + + + + +
Amount Due$
+
+ +
+ + + \ No newline at end of file -- cgit v1.2.1