ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/lilyexpresslive/software/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/lilyexpresslive/software/admin/user.php |
<?php require_once('header.php'); ?> <script type="text/javascript"> $(document).ready(function() { $('#client_id').on('change', function(){ var client_id=$('#client_id').val(); window.location.replace("user.php?id="+client_id); } ); } ); </script> <section class="content-header" style="background-color: white;"> <div class="row"> <div class="col-md-4" style="text-align: center;"> <h4><i class="fa fa-user-plus"></i> View Clients</h4> </div> <div class="col-md-4"> <?php if(isset($_GET['id'])){ $branch=$_GET['id']; } else{ $branch=0; } ?> <select class="form-control" name="client_id" id="client_id"> <?php if($_SESSION['lily_express_software_live']['id']==1){ ?> <option value="">All Branch</option> <?php } ?> <?php $statement = $pdo->prepare("SELECT * FROM tbl_branch WHERE status='Active' $tbl_branch"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $row) { ?> <option value="<?php echo $row['id']; ?>"><?php echo $row['branch_name']; ?></option> <?php } ?> </select> </div> <div class="col-md-4"> <?php if($_SESSION['lily_express_software_live']['id']==1 || $allPermissions['client']['create']=="1" ){ ?><a href="user-add.php" class="btn btn-success btn-sm"><i class="fa fa-user-plus"></i> Add New Client</a><?php } ?> </div> </div> </section> <section class="content" style="background-color: white;"> <div class="row"> <div class="col-md-12"> <div > <div class="box-body table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>SL</th> <th>Action</th> <th>Status</th> <th>Branch Name</th> <th>Client Name</th> <th>Email</th> <th>Password</th> <th>Phone Number</th> <th>GST Number</th> <th>Address</th> <!-- <th>Location</th> <th>Short Code</th> --> </tr> </thead> <tbody> <?php $i=0; if(isset($_GET['id']) && $_GET['id']!=0 ){ $branch_id="and tbl_user.branch_id=".$_GET['id']; } else{ $branch_id=""; } $statement = $pdo->prepare("SELECT tbl_user.*,tbl_branch.branch_name FROM tbl_user inner join tbl_branch on tbl_user.branch_id=tbl_branch.id where tbl_user.role_type=4 $branch_id order by tbl_user.id DESC"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $row) { $i++; ?> <tr> <td><?php echo $i; ?></td> <td> <?php if($_SESSION['lily_express_software_live']['id']==1 || $allPermissions['client']['update']=="1" ){ ?><a href="user-edit.php?id=<?php echo $row['id']; ?>" class="btn btn-warning btn-xs"> <i class="fa fa-edit"></i> Edit</a><?php } ?> <?php if($_SESSION['lily_express_software_live']['id']==1 || $allPermissions['client']['delete']=="1" ){ ?><a href="#" class="btn btn-danger btn-xs" data-href="user-delete.php?id=<?php echo $row['id']; ?>" data-toggle="modal" data-target="#confirm-delete" ><i class="fa fa-trash"></i> Delete</a> <?php } ?> </td> <td><label class="btn btn-<?php if($row['status']=="Active"){echo "success";}else {echo "danger";} ?> btn-xs"><?php echo $row['status']; ?></label></td> <td><?php echo $row['branch_name']; ?></td> <td><?php echo $row['full_name']; ?></td> <td><?php echo $row['email']; ?></td> <td><?php echo $row['password']; ?></td> <td><?php echo $row['phone']; ?></td> <td><?php echo $row['gst_no']; ?></td> <td><?php echo $row['address']; ?></td> <!-- <td><?php echo $row['location']; ?></td> <td><?php echo $row['short_location']; ?></td> --> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </section> <div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabel">Delete Confirmation</h4> </div> <div class="modal-body"> <p>Are you sure want to delete this item?</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> <a class="btn btn-danger btn-ok">Delete</a> </div> </div> </div> </div> <?php require_once('footer.php'); ?>