Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/view/template/extension/payment/
Upload File :
Current File : /var/www/alh/admin/view/template/extension/payment/cardinity_order.tpl

<h3><?php echo $text_payment_info; ?></h3>
<div class="alert alert-success" style="display: none;"><i class="fa fa-check-circle"></i></div>
<div id="table-action"></div>

<script type="text/javascript"><!--
function getPayment() {
	$.ajax({
		url: 'index.php?route=extension/payment/cardinity/getPayment&token=<?php echo $token; ?>',
		dataType: 'html',
		data: {
			order_id: '<?php echo $order_id; ?>'
		},
		beforeSend: function() {
			$('#button-filter').button('loading');

			$('#table-action').html('<i class="cardinity-loading fa fa-spinner fa-spin fa-5x" style="text-align: center; margin: 0 auto; width: 100%; font-size: 5em;"></i>');
		},
		complete: function() {
			$('#button-filter').button('reset');
		},
		success: function(html) {
			$('#table-action').html(html);
		}
	});
}

getPayment();
//--></script>