?
Current Path : /home1/savoy/public_html/savoyglobal.net/busybees/application/views/settings/ |
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/settings/view_alert.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <script> function show_page() { $("#dashboard_alert_div").hide(); $("#dashboard_div").show(); } </script> <div id="dashboard_alert_div"> <!--</div> <div id="dashboard_div">--> <div class="icons_main"> </div> <div class="grid_12"> <div class="box"> <div class="header main no-icon"> <span></span> </div> <div class="content " id="alert_table" > <table id="table-example" class="table"> <thead> <tr> <th>Sl No</th> <th>Type</th> <th>Count</th </tr> </thead> <tbody> <?php $alerts = $this->mastermodel->getdatas('alert_master'); if (count($alerts)) { $z = 1; $i = 0; foreach ($alerts as $row) { if ($z % 2 == 0) $alt = "alt"; else $alt = "alt1"; ?> <tr class="<?= $alt; ?>"> <td style="text-align: center;"><?= ++$i; ?></td> <td><a onclick="view_page('home','<?= $row['alert_master_type'] ?>','dashboard_alert_div')" ><?= $row['alert_master_name']; ?></a></td> <td> <?php $alert_function = $row['alert_target']; $check = $this->mastermodel->$alert_function(); if($row['alert_target']=="fee_pending_alert") echo count($check['result_count']); else{ echo count($check); } ?> </td> <?php $z++; } ?> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div>