ok

Mini Shell

Direktori : /home2/selectio/public_html/ramali.in/dashboard/public/
Upload File :
Current File : //home2/selectio/public_html/ramali.in/dashboard/public/wallet-transactions-table.php

<?php

include_once('includes/crud.php');
$db = new Database();
$db->connect();
$db->sql("SET NAMES 'utf8'");

include_once('includes/variables.php');
include_once('includes/custom-functions.php');

$fn = new custom_functions;
$config = $fn->get_configurations();
?>
<script src="../plugins/jQuery/jquery.validate.min.js"></script>
<section class="content-header">
    <h1>Wallet Transactions /<small><a href="home.php"><i class="fa fa-home"></i> Home</a></small></h1>
</section>
<!-- Main content -->
<section class="content">
    <!-- Main row -->
    <div class="row">
        <!-- Left col -->
        <div class="col-xs-12">
            <div class="box">
                <?php if ($permissions['transactions']['read'] == 1) { ?>
                    <div class="box-header">
                        <h3 class="box-title">Wallet Transactions</h3>
                    </div>
                    <div class="box-body table-responsive">
                        <table class="table table-hover" data-toggle="table" id="delivery-boys" data-url="api-firebase/get-bootstrap-table-data.php?table=wallet-transactions" data-page-list="[5, 10, 20, 50, 100, 200]" data-show-refresh="true" data-show-columns="true" data-side-pagination="server" data-pagination="true" data-search="true" data-trim-on-search="false" data-sort-name="id" data-sort-order="desc">
                            <thead>
                                <tr>
                                    <th data-field="id" data-sortable="true">ID</th>
                                    <th data-field="user_id" data-sortable="true">User ID</th>
                                    <th data-field="name" data-sortable="true">User Name</th>
                                    <th data-field="type" data-sortable="true">Type</th>
                                    <th data-field="amount" data-sortable="true">Amount</th>
                                    <th data-field="message" data-sortable="true">Message</th>
                                    <th data-field="status" data-sortable="true">Status</th>
                                    <th data-field="date_created" data-sortable="true">Transaction Date</th>
                                    <th data-field="last_updated" data-sortable="true" data-visible="false">Last Updated</th>
                                </tr>
                            </thead>
                        </table>
                    </div>
            </div>
        <?php } else { ?>
            <div class="alert alert-danger">You have no permission to view wallet transactions.</div>
        <?php } ?>
        </div>
        <div class="separator"> </div>
    </div>
</section>

Zerion Mini Shell 1.0