%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
<?php $folder = $moduleArray['module_name']; $display_name = $moduleArray['display_name']; ?> <div id="content-wrapper"> <div class="admin-roles"> <div class="main-body"> <div class="headings"> <h4>Manage <?=$moduleArray['display_name']?> </h4> <a href="<?=base_url($folder."/addrecord")?>" class="button2"> Add Record</a> </div> <div class="admin-container"> <div class="white-box"> <?php if ($this->session->flashdata('success')) { ?> <p style="color:green; font-size:18px;"><?php echo $this->session->flashdata('success'); ?></p> <!-- </div> --> <?php } ?> <?php $issueMaster = array(); foreach($issueArray as $irow) { $issueMaster[$irow['id']] = $irow['title']; } ?> <div class="scrolling-table"> <table class="table3"> <thead> <tr> <th>#</th> <th scope="col">Issue Type</th> <th scope="col">Title</th> <th scope="col">Description</th> <th scope="col">Order</th> <th scope="col">Status</th> <th scope="col">Action</th> </tr> </thead> <tbody> <?php if(count($recordsArray)) : $cnt=1; foreach ($recordsArray as $row) : ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td> <?=$issueMaster[$row['issue_type']]?></td> <td> <?=$row['title']?></td> <td><?=$row['description']?></td> <td><?=$row['display_order']?></td> <td><?php echo $row['status']=='1'? '<span style="color:green;">Active</span>' : '<span style="color:red;">Inactive</span>'; ?></td> <td> <a href="<?=base_url($folder."/addrecord/".$row['id'])?>" class="ad-edit"><i class="fa fa-pencil" aria-hidden="true"></i></a> <a href="<?=base_url($folder)?>?delete=<?= $row['id'] ?>" class="ad-delete" onclick="return confirm('Are you sure you want to delete this record?');"><i class="fa fa-times" aria-hidden="true"></i></a> </td> </tr> <?php $cnt++; endforeach; else : ?> <tr> <td colspan="8">No Record found</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> <!-- /.container-fluid -->