File "payments.php"
Full Path: /home/cananyalcin/public_html/core/temp/admin/payments.php
File size: 5.65 KB
MIME-type: text/x-php
Charset: utf-8
<?php include 'header.php'; ?>
<div class="container-fluid">
<?php if( $success ): ?>
<div class="alert alert-success "><?php echo $successText; ?></div>
<?php endif; ?>
<?php if( $error ): ?>
<div class="alert alert-danger "><?php echo $errorText; ?></div>
<?php endif; ?>
<ul class="nav nav-tabs">
<li class="p-b">
<button class="btn btn-default" data-toggle="modal" data-target="#modalDiv" data-action="payment_new">
<span class="export-title">Add/Remove Balance</span>
</button>
</li>
<li class="pull-right custom-search">
<form class="form-inline" action="<?php echo site_url("admin/payments/online") ?>" method="get">
<div class="input-group">
<input type="text" name="search" class="form-control" value="<?=$search_word?>" placeholder="Search..">
<span class="input-group-btn search-select-wrap">
<select class="form-control search-select" name="search_type">
<option value="username" <?php if( $search_where == "username" ): echo 'selected'; endif; ?> >Username</option>
</select>
<button type="submit" class="btn btn-default"><span class="fa fa-search" aria-hidden="true"></span></button>
</span>
</div>
</form>
</li>
<li class="pull-right export-li">
<a href="/admin/payments/bank" class="export">
<span class="export-title"><?php if(countRow(["table"=>"payments","where"=>["payment_method"=>7,"payment_status"=>1]])): ?><span class="badge" style="background-color: #f0ad4e"><?=countRow(["table"=>"payments","where"=>["payment_method"=>7,"payment_status"=>1]]);?></span> <?php endif; ?> Bank Payment Notifications</span>
</a>
</li>
</ul>
<table class="table">
<thead>
<tr>
<th class="p-l">ID</th>
<th>User</th>
<th>Old Balance</th>
<th>Amount</th>
<th>Payment method</th>
<th>Status</th>
<th>Mode</th>
<th>Note</th>
<th>Creation Date</th>
<th>Date of arrangement</th>
<th></th>
</tr>
</thead>
<form id="changebulkForm" action="<?php echo site_url("admin/payments/online/multi-action") ?>" method="post">
<tbody>
<?php foreach($payments as $payment ): ?>
<tr>
<td class="p-l"><?php echo $payment["payment_id"] ?></td>
<td><?php echo $payment["username"] ?></td>
<td><?php echo conrate($payment["client_balance"]) ?></td>
<td><?php echo conrate($payment["payment_amount"]) ?></td>
<td><?php echo $payment["method_name"] ?></td>
<td>Completed</td>
<td><?php echo $payment["payment_mode"]; ?></td>
<td><?php echo $payment["payment_note"] ?></td>
<td nowrap=""><?php echo $payment["payment_create_date"] ?></td>
<td nowrap=""><?php echo $payment["payment_update_date"] ?></td>
<td class="service-block__action">
<div class="dropdown pull-right">
<button type="button" class="btn btn-default btn-xs dropdown-toggle btn-xs-caret" data-toggle="dropdown">Transactions<span class="caret"></span></button>
<ul class="dropdown-menu">
<?php if( $payment["payment_mode"] == "Otomatik" ): ?>
<li><a href="#" data-toggle="modal" data-target="#modalDiv" data-action="payment_detail" data-id="<?php echo $payment["payment_id"] ?>">Payment details</a></li>
<?php endif; ?>
<li><a href="#" data-toggle="modal" data-target="#modalDiv" data-action="payment_edit" data-id="<?php echo $payment["payment_id"] ?>">Edit</a></li>
</ul>
</div>
</td>
</tr>
<?php endforeach; ?>
</tbody>
<input type="hidden" name="bulkStatus" id="bulkStatus" value="0">
</form>
</table>
<?php if( $paginationArr["count"] > 1 ): ?>
<div class="row">
<div class="col-sm-8">
<nav>
<ul class="pagination">
<?php if( $paginationArr["current"] != 1 ): ?>
<li class="prev"><a href="<?php echo site_url("admin/payments/online/1".$search_link) ?>">«</a></li>
<li class="prev"><a href="<?php echo site_url("admin/payments/online/".$paginationArr["previous"].$search_link) ?>">‹</a></li>
<?php
endif;
for ($page=1; $page<=$pageCount; $page++):
if( $page >= ($paginationArr['current']-9) and $page <= ($paginationArr['current']+9) ):
?>
<li class="<?php if( $page == $paginationArr["current"] ): echo "active"; endif; ?> "><a href="<?php echo site_url("admin/payments/online/".$page.$search_link) ?>"><?=$page?></a></li>
<?php endif; endfor;
if( $paginationArr["current"] != $paginationArr["count"] ):
?>
<li class="next"><a href="<?php echo site_url("admin/payments/online/".$paginationArr["next"].$search_link) ?>" data-page="1">›</a></li>
<li class="next"><a href="<?php echo site_url("admin/payments/online/".$paginationArr["next"].$search_link) ?>" data-page="1">»</a></li>
<?php endif; ?>
</ul>
</nav>
</div>
</div>
<?php endif; ?>
</div>
<?php include 'footer.php'; ?>