?
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/fee_pending_alerts.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); } </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 no-icon main">Fee Pending Alerts</div> <div class="content no-padding"> <table id="table-example" class="table"> <thead> <tr> <th>SL NO</th> <th>Class Name</th> <th>Count</th> </tr> </thead> <tbody> <?php // $fee_alert_by_class=$this->mastermodel->fee_pending_alert_by_class(); $fee_alert = $this->mastermodel->fee_pending_alert(); $class_name = $this->mastermodel->getdatas('class_name'); $i = 1; if (isset($class_name)) { foreach ($class_name as $value) { ?> <tr> <td><?= $i ?></td> <td> <a class="clickimage1" href="#" onclick="view_fee_alert(<?= $value['class_name_id'] ?>)"> <?= $value['class_name_code'] ?> </a> </td> <td> <?php if (isset($fee_alert['result_count'][$value['class_name_id']])) echo $fee_alert['result_count'][$value['class_name_id']]; else echo 0; ?> </td> </tr> <?php $i++; } } ?> </tbody> </table> </div> </div> </div>