?
Current Path : /home1/savoy/public_html/savoyglobal.net/horeitia/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/horeitia/application/views/Home/leftmain.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div id="events-column-main" > <div > </div> <?php $viewinfo=$this->mastermodel->getalert(); ?> <table class="sort" cellpadding="0" cellspacing="0" width="100%" style="margin-top: 20px;margin-left: 20px;"> <caption>My Alerts</caption> <thead> <tr> <th>Module</th> <th>Alert Type</th> <th width="10%">Count</th> </tr> </thead> <tbody> <?php if ($viewinfo->num_rows() > 0) { $table=""; $field=""; $z=1; foreach ($viewinfo->result() as $row) { if($z%2==0) $alt="alt"; else $alt="alt1"; $count_alert = $this->settingsmodel->get_my_alert_count($row->alert_master_id); if($count_alert > 0) { ?> <tr class="<?=$alt;?>"> <td><a href="#" onclick="view_alerts(<?=$row->alert_master_id;?>,'1')" ><?=$row->module_name?></a></td> <td><?=$row->alert_master_caption?></td> <td> <?=$count_alert;?> </td> <?php $z++; } } } ?> </tbody> </table> <?php $viewinfo=$this->mastermodel->getreminder(); ?> <table class="sort" cellpadding="0" cellspacing="0" width="100%" style="margin-left: 20px;"> <caption>Reminders</caption> <thead> <tr> <th>Sl No</th> <th>Subject</th> <th>Date</th> </tr> </thead> <tbody> <?php if ($viewinfo->num_rows() > 0) { $table=""; $field=""; $z=1; foreach ($viewinfo->result() as $row) { if($z%2==0) $alt="alt"; else $alt="alt1"; ?> <tr class="'.$alt.'"> <td><?=$z;?></td> <td><?=$row->reminder_subject;?></td> <td><?=$this->mastermodel->convertdatenormalformat($row->reminder_date);?></td> <?php $z++; } } ?> </tbody> </table> </div>