?
Current Path : /home1/savoy/public_html/savoyglobal.net/sec_old/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/sec_old/application/views/home/dashboard.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $viewinfo = $this->mastermodel->getreminder(); ?> <script> function remove_fee_alert(student_batch_id){ $.ajax({ type: "GET", dataType: "json", url: "<?= site_url('master/remove_fee_alert/') ?>/" + student_batch_id, success: function(msg) { alert("Alert Removed Successfully"); location.reload(false) } }); } </script> <h4 class="grid_12">Dashboard</h4> <div class="clean"></div> <div class="grid_4"> <div class="box"> <div class="content no-padding"> <div class="header main"> Reminders</div> <table class="table"> <thead> <tr> <th id="sl">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> </tr> <?php $z++; } } ?> </tbody> </table> </div> <!-- End of .content --> <div class="clear"></div> </div> <!-- End of .box --> </div> <!-- End of .grid_4 --> <div class="grid_8" > <div class="box"> <div class="header"> <h3>Shortcuts</h3> </div> <div class="content"> <ul id="shortcuts" class="shortcuts tab-content"> <?php foreach ($modulelist as $menulst) { if ($this->mastermodel->check_home_page($menulst['menu_id'], $_SESSION['user_id'], '0')) { ?> <li> <div class="shortcut-icon"> <img src="<?= base_url() ?>assets/img/icons/25x25/blue/customer.png" width="25" height="25"> <div class="divider"></div> </div> <a class="shortcut-description" href="<?= site_url(); ?>/master/index/<?= $menulst['menu_id']; ?>/<?= $menulst['module_id']; ?>"> <strong><?= $menulst['caption']; ?></strong></a> </li> <?php } } ?> </ul> </div> </div> </div> <div id="alert_show"> </div> <div id="alert_student_fee"> <?php $this->load->view('home/fee_alert'); // $this->load->view('home/student_fee_alert'); ?> </div>