?
Current Path : /home1/savoy/public_html/savoyglobal.net/rms/application/views/master/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/rms/application/views/master/uploaded_files.php |
<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ $files=$this->mastermodel->get_data('file',$master_id,'master_id'); if(!empty($files)) { ?> <div class="grid_12"> <div class="box"> <div class="header main">Files</div> <table class="table"> <tr> <th style="width: 20%">S.No</th> <th style="width: 67%">File Name</th> <th style="width: 13%">Operation</th> </tr> <?php $i=1; //var_dump($employee_file); foreach ($files as $file) { echo '<tr>'; echo '<td>'. $i .'</td>'; echo '<td>'. $file['file_name'] .'</td>'; echo '<td>'; ?> <div id="console_fronticons"> <div class="elements"> <a href="<?=base_url().$file['file_location'];?>"><img src="<?=base_url()?>assets/images/downarrow.png" title="Download" alt="Download" width="20" height="20"/></a> </div> <div class="elements"> <img src="<?=base_url()?>assets/images/delete-icon.png" title="Delete" width="20" height="20" onclick="deletedata('file',<?=$file['file_id'];?>,'file_id','<?=$controller;?>','<?=$controller_function;?>','<?=$model_function;?>','<?=$page;?>','','')" alt="Delete" align = "center"/> </div> </div> <?php echo '</td>'; $i++; } ?> </table> </div> </div> <?php } ?>