mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-10-13 18:04:54 +02:00
Importing Znote AAC 1.5_SVN rev 168 to github.
This commit is contained in:
78
buypoints.php
Normal file
78
buypoints.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php require_once 'engine/init.php';
|
||||
protect_page();
|
||||
include 'layout/overall/header.php';
|
||||
|
||||
// Import from config:
|
||||
$paypal = $config['paypal'];
|
||||
$prices = $config['paypal_prices'];
|
||||
|
||||
if ($paypal['enabled']) {
|
||||
?>
|
||||
|
||||
<h1>Buy Points</h1>
|
||||
<h2>Buy points using Paypal:</h2>
|
||||
<table id="buypointsTable" class="table table-striped table-hover">
|
||||
<tr class="yellow">
|
||||
<th>Price:</th>
|
||||
<th>Points:</th>
|
||||
<?php if ($paypal['showBonus']) { ?>
|
||||
<th>Bonus:</th>
|
||||
<?php } ?>
|
||||
<th>Action:</th>
|
||||
</tr>
|
||||
<?php
|
||||
foreach ($prices as $price => $points) {
|
||||
echo '<tr class="special">';
|
||||
echo '<td>'. $price .'('. $paypal['currency'] .')</td>';
|
||||
echo '<td>'. $points .'</td>';
|
||||
if ($paypal['showBonus']) echo '<td>'. calculate_discount(($paypal['points_per_currency'] * $price), $points) .' bonus</td>';
|
||||
?>
|
||||
<td>
|
||||
<form action="https://www.paypal.com/cgi-bin/webscr" method="POST">
|
||||
<input type="hidden" name="cmd" value="_xclick">
|
||||
<input type="hidden" name="business" value="<?php echo $paypal['email']; ?>">
|
||||
<input type="hidden" name="item_name" value="<?php echo $points .' shop points on '. $config['site_title']; ?>">
|
||||
<input type="hidden" name="item_number" value="1">
|
||||
<input type="hidden" name="amount" value="<?php echo $price; ?>">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="no_note" value="1">
|
||||
<input type="hidden" name="currency_code" value="<?php echo $paypal['currency']; ?>">
|
||||
<input type="hidden" name="lc" value="GB">
|
||||
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||
<input type="hidden" name="return" value="<?php echo $paypal['success']; ?>">
|
||||
<input type="hidden" name="cancel_return" value="<?php echo $paypal['failed']; ?>">
|
||||
<input type="hidden" name="rm" value="2">
|
||||
<input type="hidden" name="notify_url" value="<?php echo $paypal['ipn']; ?>" />
|
||||
<input type="hidden" name="custom" value="<?php echo sanitize($_SESSION['user_id']).'!'.$price.'!'.$points; ?>">
|
||||
<input type="submit" value=" PURCHASE ">
|
||||
</form>
|
||||
</td>
|
||||
<?php
|
||||
echo '</tr>';
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
<?php } ?>
|
||||
|
||||
<?php
|
||||
if ($config['paygol']['enabled'] == true) {
|
||||
?>
|
||||
<!-- PayGol Form using Post method -->
|
||||
<h2>Buy points using Paygol:</h2>
|
||||
<?php $paygol = $config['paygol']; ?>
|
||||
<p><?php echo $paygol['price'] ." ". $paygol['currency'] ."~ for ". $paygol['points'] ." points:"; ?></p>
|
||||
<form name="pg_frm" method="post" action="http://www.paygol.com/micropayment/paynow" >
|
||||
<input type="hidden" name="pg_serviceid" value="<?php echo $paygol['serviceID']; ?>">
|
||||
<input type="hidden" name="pg_currency" value="<?php echo $paygol['currency']; ?>">
|
||||
<input type="hidden" name="pg_name" value="<?php echo $paygol['name']; ?>">
|
||||
<input type="hidden" name="pg_custom" value="<?php echo $session_user_id; ?>">
|
||||
<input type="hidden" name="pg_price" value="<?php echo $paygol['price']; ?>">
|
||||
<input type="hidden" name="pg_return_url" value="<?php echo $paygol['returnURL']; ?>">
|
||||
<input type="hidden" name="pg_cancel_url" value="<?php echo $paygol['cancelURL']; ?>">
|
||||
<input type="hidden" name="pg_notify" value="<?php echo $paygol['ipnURL']; ?>">
|
||||
<input type="image" name="pg_button" src="http://www.paygol.com/micropayment/img/buttons/150/black_en_pbm.png" border="0" alt="Make payments with PayGol: the easiest way!" title="Make payments with PayGol: the easiest way!" >
|
||||
</form>
|
||||
<?php }
|
||||
|
||||
if (!$config['paypal']['enabled'] && !$config['paygol']['enabled']) echo '<h1>Buy Points system disabled.</h1><p>Sorry, this functionality is disabled.</p>';
|
||||
include 'layout/overall/footer.php'; ?>
|
Reference in New Issue
Block a user