File: /home/globfdxw/diasporameetsafrica.com/wp-content/themes/DA10/ajax/ajax-modal-credit.php
<?php
/*
* Theme: PREMIUMPRESS CORE FRAMEWORK FILE
* Url: www.premiumpress.com
* Author: Mark Fail
*
* THIS FILE WILL BE UPDATED WITH EVERY UPDATE
* IF YOU WANT TO MODIFY THIS FILE, CREATE A CHILD THEME
*
* http://codex.wordpress.org/Child_Themes
*/
if (!defined('THEME_VERSION')) { header('HTTP/1.0 403 Forbidden'); exit; }
global $CORE, $userdata;
?>
<div class="p-4"> <i class="fal fa-sack fa-3x float-left mr-3 text-primary mt-1"></i>
<h4 class="text-600"><?php echo __("Buy Credit","premiumpress"); ?></h4>
<p class="opacity-5"><?php echo __("Top-up your account and save money with our credit system.","premiumpress"); ?></p>
<hr />
<div id="ajax_overdue_payment"></div>
<?php $i=1; while($i < 8){ if(_ppt(array('credit', $i .'a')) == ""){ $i++; continue; } ?>
<div class="row buycredit">
<div class="col-6 col-md-4 mobile-mb-2">
<div class="small opacity-5"><?php echo __("You Pay","premiumpress"); ?></div>
<div class="fs-md text-600 <?php echo $CORE->GEO("price_formatting",array()); ?>"><?php echo _ppt(array('credit', $i .'a')); ?></div>
</div>
<div class="col-6 col-md-4">
<div class="small opacity-5"><?php echo __("You Get","premiumpress"); ?></div>
<div class="fs-md text-600 <?php echo $CORE->GEO("price_formatting",array()); ?>"><?php echo _ppt(array('credit', $i .'b')); ?></div>
</div>
<div class="col-md-4">
<button data-ppt-btn class=" btn-primary float-right btn-lg" onclick="processNewPayment('#ppt_creditdata_<?php echo $i; ?>')"><?php echo __("Buy Now","premiumpress"); ?></button>
<input type="hidden" id="ppt_creditdata_<?php echo $i; ?>" value="<?php
echo $CORE->order_encode(array(
"uid" => $userdata->ID,
"amount" => _ppt(array('credit', $i .'a')),
"order_id" => "CREDIT-".$userdata->ID."-NEW-".$i."-".rand(),
"description" => __("Credit Purchase","premiumpress"),
"recurring" => 0,
"couponcode" => 0,
"nocredit" => 1,
) );
?>" />
</div>
<div class="col-12">
<hr />
</div>
</div>
<?php $i++; } ?>
</div>