%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<div class="wrapper d-flex align-items-stretch"> <?php include('_parts/admin_sidebar.php') ?> <link href="//cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css" /> <script src="//cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script> <div id="content"> <?php include('_parts/admin_internal_header.php') ?> <div class="main-body"> <div class="headings"> <h4>Manage Admin Users </h4> <a href="<?=base_url('advancesetting/addnewuser') ?>" title="View Details" class="button2"> <i class="fa fa-plus" aria-hidden="true"></i> Add New Admin User </a> </div> <div class="white-box"> <div class="scrolling-table"> <table class="table3" id="myTable" class="display" style="width:100%"> <thead> <tr> <th>#</th> <th> Full Name</th> <th> User Name</th> <th>Department</th> <th>Contact Number </th> <th>Role </th> <!--<th>Level </th>--> <th>status</th> <th>Action</th> </tr> </thead> <tbody> <?php $roleNameArray = array(); foreach($roleArray as $role) { $roleNameArray[$role['role_id']] = $role['role_name']; } $deptArray = array(); foreach($departmentArray as $role) { $deptArray[$role['id']] = $role['name']; } $cnt =1; foreach($responseArray as $row) { ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td><?php echo htmlentities($row['full_name']);?></td> <td><?php echo htmlentities($row['username']);?></td> <td><?php echo $deptArray[$row['department_id']];?></td> <td><?php echo htmlentities($row['mobile_no']);?></td> <td><?php echo htmlentities($roleNameArray[$row['role']]);?></td> <!--<td><?php echo htmlentities($row['user_level']);?></td>--> <td><?php echo $row['status']=='1' ? '<span class="active-status">Active</span>' : '<span class="inactive-status">Inactive</span>'; ?></td> <td> <a class="edit-btn" href="<?=base_url('advancesetting/addnewuser') ?>?uid=<?php echo htmlentities($row['id']);?>" title="View Details"> <i class="fa fa-pencil-square-o" aria-hidden="true"></i> </a> </td> </tr> <?php $cnt=$cnt+1; } ?> </table> </div> </div> </div> </div> </div> <script> $(document).ready( function () { $('#myTable').DataTable(); } ); </script> <script src="<?=base_url('assets/js/popper.js'); ?>"></script> <script src="<?=base_url('assets/js/main.js'); ?>"></script> </section>