File: /home/dmstechonline/social.dmstech.online/view/Payment/edit.php
<?php
/* Check the absolute path to the Social Auto Poster directory. */
if ( !defined( 'SAP_APP_PATH' ) ) {
// If SAP_APP_PATH constant is not defined, perform some action, show an error, or exit the script
// Or exit the script if required
exit();
}
global $sap_common;
$SAP_Mingle_Update = new SAP_Mingle_Update();
$license_data = $SAP_Mingle_Update->get_license_data();
if( !$sap_common->sap_is_license_activated() ){
$redirection_url = '/mingle-update/';
header('Location: ' . SAP_SITE_URL . $redirection_url );
die();
}
?>
<link rel="stylesheet" href="<?php echo SAP_SITE_URL . '/assets/css/jquery-ui.css' ?>" >
<?php
include SAP_APP_PATH . 'header.php';
include SAP_APP_PATH . 'sidebar.php';
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header d-flex justify-content-between">
<h1><div class="plus-icon edit-icon"></div><p><?php echo $sap_common->lang('edit_payment'); ?><small></small></p></h1>
<a href="<?php echo SAP_SITE_URL . '/payments/'; ?>"><button class="btn btn-primary back-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="23" viewBox="0 0 13 23" fill="none">
<path d="M11 20.6863L1.65685 11.3431L11 2" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Back
</button></a>
</section>
<section class="content">
<?php echo $this->flash->renderFlash(); ?>
<form class="edir-payment-form" name="edit-payment" id="edit-payment" method="POST" enctype="multipart/form-data" action="<?php echo SAP_SITE_URL . '/payments/update/'; ?>">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title"><?php echo $sap_common->lang('payment_details'); ?></h3>
</div>
<div class="box-body margin-bottom-30">
<div class="row ">
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('select_customer'); ?><span class="astric">*</span></label>
<div>
<select name="user_id" id="user_id" class="form-control">
<option value=""><?php echo $sap_common->lang('select_customer'); ?></option>
<?php
if( !empty($customers) ) {
foreach ( $customers as $key => $customer ) { ?>
<option <?php echo ($customer['id'] == $payment_details->user_id ) ? 'selected="selected"' : ''; ?> value="<?php echo $customer['id'] ?>"><?php echo $customer['first_name'].' '.$customer['last_name'] ?> </option>
<?php } } ?>
</select>
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('membership_level'); ?></label>
<div>
<select name="plan_id" id="plan_id" class="form-control" readonly="readonly">
<option value=""></option>
</select>
</div>
</div>
</div>
<div class="row ">
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('amount'); ?><span class="astric">*</span></label>
<div>
<input value="<?php echo $payment_details->amount ?>" type="number" name="amount" class="form-control" min="1" placeholder="<?php echo $sap_common->lang('ph_price'); ?>">
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('payment_date'); ?><span class="astric">*</span></label>
<div>
<input type="text" name="payment_date" id="payment_date" class="form-control datepicker" value="<?php echo date('Y-m-d',strtotime($payment_details->payment_date)) ?>" placeholder="<?php echo $sap_common->lang('ph_date'); ?>">
</div>
</div>
</div>
<div class="row ">
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('transaction_id'); ?></label>
<div>
<input type="text" <?php echo $payment_details->transaction_id ?> name="transaction_id" class="form-control">
</div>
</div>
<div class="col-md-6 form-group">
<label><?php echo $sap_common->lang('status'); ?><span class="astric">*</span></label>
<div>
<select name="status" id="status" class="form-control">
<option <?php echo ($payment_details->payment_status == '1') ? 'selected="selected"': ''; ?> value="1"><?php echo $sap_common->lang('completed'); ?></option>
<option <?php echo ($payment_details->payment_status == '0') ? 'selected="selected"': ''; ?> value="0"><?php echo $sap_common->lang('pending'); ?></option>
<option <?php echo ($payment_details->payment_status == '2') ? 'selected="selected"': ''; ?> value="2"><?php echo $sap_common->lang('failed'); ?></option>
<option <?php echo ($payment_details->payment_status == '3') ? 'selected="selected"': ''; ?> value="2"><?php echo $sap_common->lang('refunded'); ?></option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="sap-mt-1 col-md-12 form-group">
<input type="hidden" name="payment_id" value="<?php echo $payment_details->id ?>">
<button type="submit" name="payment_submit" class="btn btn-primary"><?php echo $sap_common->lang('save'); ?></button>
</div>
</div>
</div>
</div>
</form>
</section>
</div>
<script src="<?php echo SAP_SITE_URL . '/assets/js/jquery.min.js' ?>" type="text/javascript"></script>
<?php
include'footer.php';
?>
<script src="<?php echo SAP_SITE_URL . '/assets/js/jquery-ui.js' ?>"></script>
<script src="<?php echo SAP_SITE_URL . '/assets/js/custom.js'; ?>"></script>