?
Current Path : /home1/savoy/public_html/savoyglobal.net/eldertree/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/eldertree/application/views/home/alert.php |
<div class="row-fluid"> <div class="span12"> <!-- BEGIN EXAMPLE TABLE PORTLET--> <div class="portlet box yellow"> <div class="portlet-title"> <div class="caption"><i class="icon-cogs"></i>Alerts</div> </div> <div class="portlet-body"> <table class="table table-striped table-hover table-bordered" > <thead> <tr> <th>Sl No</th> <th>Type</th> <th>Count</th </tr> </thead> <tbody> <?php $alerts = $this->mastermodel->get_my_alerts(); 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 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> </div>