���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/dashboard/views/module/ |
<div class="row"> <div class="col-sm-12 col-md-12"> <div class="panel panel-bd lobidrag"> <div class="panel-heading"> <div class="panel-title"> <h4><?php echo (!empty($title)?$title:null) ?></h4> </div> </div> <div class="panel-body"> <div class="form-group row"> <label for="blood" class="col-sm-2"><?php echo display('username') ?> *</label> <div class="col-sm-10"> <?php if (!empty($permission[0])) ?> <?php echo html_escape($permission[0]->user_name) ?> </div> </div> <table class="table table-bordered"> <thead> <tr> <th><?php echo display('sl_no') ?></th> <th><?php echo display('module_name') ?></th> <th><?php echo display('create') ?></th> <th><?php echo display('read') ?></th> <th><?php echo display('update') ?></th> <th><?php echo display('delete') ?></th> </tr> </thead> <?php $sl = 1 ?> <?php if (!empty($permission)) ?> <?php foreach ($permission as $value) { ?> <tbody> <tr> <td><?php echo ($sl++) ?></td> <td><?php echo html_escape($value->module_name) ?></td> <td class="text-center"><?php echo (($value->create==1)?"<i class='fa fa-check text-success'></i>":"<i class='fa fa-times text-danger'></i>") ?></td> <td class="text-center"><?php echo (($value->read==1)?"<i class='fa fa-check text-success'></i>":"<i class='fa fa-times text-danger'></i>") ?></td> <td class="text-center"><?php echo (($value->update==1)?"<i class='fa fa-check text-success'></i>":"<i class='fa fa-times text-danger'></i>") ?></td> <td class="text-center"><?php echo (($value->delete==1)?"<i class='fa fa-check text-success'></i>":"<i class='fa fa-times text-danger'></i>") ?></td> </tr> </tbody> <?php } ?> </table> <?php echo form_close() ?> </div> </div> </div> </div>