Sindbad~EG File Manager
<?php
if ( empty( $viaWpAjax ) ){
require_once("../../../../wp-load.php");
}
if ( !isset( $_GET['ihcpublicn'] ) || !wp_verify_nonce( sanitize_text_field($_GET['ihcpublicn']), 'ihcpublicn' ) ) {
die( "Not allowed" );
}
if (!empty($_REQUEST['ihc_coupon']) && !empty($_REQUEST['l_id'])){
//use this only for stripe payment
$coupon_data = ihc_check_coupon( sanitize_text_field($_REQUEST['ihc_coupon']), sanitize_text_field($_REQUEST['l_id']) );
if ($coupon_data){
$level_data = ihc_get_level_by_id( sanitize_text_field($_REQUEST['l_id']) );
$reccurence = FALSE;
if (!empty($level_data['access_type']) && $level_data['access_type']=='regular_period'){
$reccurence = TRUE;
}
if ($level_data['price'] && $coupon_data && (!empty($coupon_data['reccuring']) || !$reccurence) ){
if ($coupon_data['discount_type']=='percentage'){
$price = $level_data['price'] - ($level_data['price']*$coupon_data['discount_value']/100);
} else {
$price = $level_data['price'] - $coupon_data['discount_value'];
}
$price = $price * 100;
$price = round($price, 2);
echo json_encode(array('price'=>$price));
die();
}
}
if (isset($_REQUEST['initial_price'])){
echo json_encode( array( 'price'=> sanitize_text_field($_REQUEST['initial_price']) ) );//new price not available, problems with coupon
}
die();
}
die();
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists