ok
Direktori : /home2/selectio/www/lilyexpresslive/software/admin/ |
Current File : /home2/selectio/www/lilyexpresslive/software/admin/system-users.php |
<?php require_once('header.php'); ?> <section class="content-header" style="background-color: white;"> <div class="row"> <div class="col-md-6"> <?php if($_SESSION['lily_express_software_live']['id']==1 || $allPermissions['system_user']['read']=="1" ){ ?><a href="system-user-add.php" class="btn btn-primary btn-sm">Add System User</a><?php } ?></div> <div class="col-md-6" style="text-align: left;"> <h4><i class="fa fa-user-plus"></i> System Users</h4> </div> </div> </section> <section class="content"> <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 width="30">SL</th> <th>Name</th> <th>Phone Number</th> <th>Email</th> <th>Password</th> <th>Address</th> <th>Status</th> <th>Role Name</th> <th>Action</th> </tr> </thead> <tbody> <?php $i=0; $statement = $pdo->prepare("SELECT *,(select role_name from tbl_role where id=u.role_ids) as user_role_name FROM tbl_system_user u where u.id!=0 and u.role_type=2"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $row) { $i++; ?> <tr> <td><?php echo $i; ?></td> <td><?php echo $row['full_name']; ?></td> <td><?php echo $row['phone']; ?></td> <td><?php echo $row['email']; ?></td> <td><?php echo $row['password']; ?></td> <td><?php echo $row['address']; ?></td> <td><?php echo $row['status']; ?></td> <td><?php echo $row['user_role_name']; ?></td> <td> <?php if($_SESSION['lily_express_software_live']['id']==1 || $allPermissions['system_user']['update']=="1" ){ ?><a href="system-user-edit.php?id=<?php echo $row['id']; ?>" class="btn btn-primary btn-xs">Edit</a><?php } ?> <?php if($_SESSION['lily_express_software_live']['id']==1 || $allPermissions['system_user']['delete']=="1" ){ ?><a href="#" class="btn btn-danger btn-xs" data-href="system-user-delete.php?id=<?php echo $row['id']; ?>" data-toggle="modal" data-target="#confirm-delete">Delete</a><?php } ?> </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'); ?>