Untitled
unknown
plain_text
2 years ago
4.7 kB
6
Indexable
<?php require_once 'engine/init.php'; protect_page(); include 'layout/overall/header.php'; // Import from config: $pagseguro = $config['pagseguro']; $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 hhb_tohtml($paypal['email']); ?>"> <input type="hidden" name="item_name" value="<?php echo $points .' shop points on '. hhb_tohtml($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 hhb_tohtml($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 hhb_tohtml($paypal['success']); ?>"> <input type="hidden" name="cancel_return" value="<?php echo hhb_tohtml($paypal['failed']); ?>"> <input type="hidden" name="rm" value="2"> <input type="hidden" name="notify_url" value="<?php echo hhb_tohtml($paypal['ipn']); ?>" /> <input type="hidden" name="custom" value="<?php echo (int)$session_user_id; ?>"> <input type="submit" value=" PURCHASE "> </form> </td> <?php echo '</tr>'; } ?> </table> <?php } ?> <?php if ($config['pagseguro']['enabled'] == true) { ?> <h2>Buy points using Pagseguro:</h2> <form target="pagseguro" action="https://<?=hhb_tohtml($pagseguro['urls']['www'])?>/checkout/checkout.jhtml" method="post"> <input type="hidden" name="email_cobranca" value="<?=hhb_tohtml($pagseguro['email'])?>"> <input type="hidden" name="tipo" value="CP"> <input type="hidden" name="moeda" value="<?=hhb_tohtml($pagseguro['currency'])?>"> <input type="hidden" name="ref_transacao" value="<?php echo (int)$session_user_id; ?>"> <input type="hidden" name="item_id_1" value="1"> <input type="hidden" name="item_descr_1" value="<?=hhb_tohtml($pagseguro['product_name'])?>"> <input type="number" name="item_quant_1" min="1" step="4" value="1"> <input type="hidden" name="item_peso_1" value="0"> <input type="hidden" name="item_valor_1" value="<?=$pagseguro['price']?>"> <input type="submit" value=" PURCHASE "> </form> <br> <?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'] ." ". hhb_tohtml($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 hhb_tohtml($paygol['serviceID']); ?>"> <input type="hidden" name="pg_currency" value="<?php echo hhb_tohtml($paygol['currency']); ?>"> <input type="hidden" name="pg_name" value="<?php echo hhb_tohtml($paygol['name']); ?>"> <input type="hidden" name="pg_custom" value="<?php echo hhb_tohtml($session_user_id); ?>"> <input type="hidden" name="pg_price" value="<?php echo $paygol['price']; ?>"> <input type="hidden" name="pg_return_url" value="<?php echo hhb_tohtml($paygol['returnURL']); ?>"> <input type="hidden" name="pg_cancel_url" value="<?php echo hhb_tohtml($paygol['cancelURL']); ?>"> <input type="image" name="pg_button" src="https://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'] && !$config['pagseguro']['enabled']) echo '<h1>Buy Points system disabled.</h1><p>Sorry, this functionality is disabled.</p>'; include 'layout/overall/footer.php'; ?>
Editor is loading...