?
Current Path : /home1/savoy/www/savoyglobal.net/koaladraft/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/www/savoyglobal.net/koaladraft/application/views/home/dashboard.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); //$this->load->view('documentreadyfunctions'); ?> <div class="grid_12"> <div class="box"> <div class="header no-icon main">Alerts</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 style="color:#0E915F; font-weight: bolder; " href="#" 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>