?
Current Path : /home1/savoy/public_html/savoyglobal.net/busybees/application/views/home/ |
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/busybees/application/views/home/document_alert.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?> <script> scrollToElement($('#dashboard_alert_div')); function scrollToElement(ele) { $(window).scrollTop(ele.offset().top).scrollLeft(ele.offset().left); } function close_alert(file_id,row_id,close_date) { if (confirm("Are you sure you want to remove the alert?")) { $.ajax({ type: "POST", url: "<?= site_url() ?>"+'/settings/alert_close/'+file_id+"/document_alert/"+close_date, success: function(msg) { $('#'+row_id) .hide(); } });} } </script> <div class="icons_main"> <div class="icons"> <img src="<?= base_url() ?>assets/images/back.png" title="Back" class="clickimage" onclick="view_page('home','dashboard','dashboard_alert_div')" alt="Back" align = "center" width="32" height="32" /> </div> </div> <div class="clean"></div> <div class="grid_12"> <div class="box"> <div class="header main no-icon"> <span>Document Alerts</span> </div> <div class="content no-padding"> <table id="table-example" class="table"> <thead> <tr> <th id="sl">Sl No</th> <th>File Name</th> <th>Expiry Date</th> <th>Remind Before</th> <th width="20%">Action</th> </tr> </thead> <tbody> <?php $check1 = $this->mastermodel->document_alert(); $i = 0; foreach ($check1 as $list) { $i++; echo "<tr id='close_alert_" . $i . "'><td>" . $i . "</td> <td>" . $list['file_name'] . "</td> <td>" . $this->mastermodel->convertdatenormalformat($list['file_expiry_date']) . "</td> <td>" . $list['file_remind_before'] . "</td>"; ?> <td> <div class="elements"> <a href="<?=base_url().$list['file_location']?>"><img src="<?=base_url()?>/assets/images/downarrow.png" title="Download" alt="Download" width="20" height="20"></a> </div> <div class="elements"> <img class="clickimage" src='<?= base_url() ?>assets/images/delete-icon.png' onclick='close_alert("<?= $list['file_id'] ?>","close_alert_<?= $i ?>","<?= $list['file_expiry_date'] ?>")' title='Delete' width='20' height='20' alt='Delete' align = 'center'/> </div> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div>