ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/mailsms/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/mailsms/index.php |
<style type="text/css"> @media print { .no-print, .no-print * { display: none !important; } } </style> <?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-bullhorn"></i> <?php echo $this->lang->line('communicate'); ?></h1> </section> <section class="content"> <div class="row"> <div class="col-md-12"> <div class="box box-primary" > <div class="box-header with-border"> <h3 class="box-title"> <?php echo $this->lang->line('email_/_sms_log'); ?></h3> <div class="box-tools pull-right"> </div> </div> <div class="box-body"> <div class="table-responsive mailbox-messages"> <div class="download_label"><?php echo $this->lang->line('email_/_sms_log'); ?></div> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('title'); ?> </th> <th><?php echo $this->lang->line('date'); ?> </th> <th><?php echo $this->lang->line('email'); ?> </th> <th><?php echo $this->lang->line('sms'); ?></th> <th><?php echo $this->lang->line('group'); ?> </th> <th><?php echo $this->lang->line('individual'); ?></th> <th><?php echo $this->lang->line('class'); ?></th> </tr> </thead> <tbody> <?php foreach ($listMessage as $message) { ?> <tr> <td class="mailbox-name"> <a href="#" data-toggle="popover" class="detail_popover"><?php echo $message['title'] ?></a> <div class="fee_detail_popover" style="display: none"> <?php if ($message['message'] == "") { ?> <p class="text text-danger"><?php echo $this->lang->line('no_description'); ?></p> <?php } else { ?> <p class="text text-info"><?php echo $message['message']; ?></p> <?php } ?> </div> </td> <td class="mailbox-name"> <?php $date_time = strtotime($message['created_at']); $date = date('Y-m-d', $date_time); $time = date('H:i:s', $date_time); echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($date)) . " " . $time; ?> </td> <td class="mailbox-name"> <?php if ($message['send_mail']) { echo "<i class='fa fa-check-square-o'></i><span class='hide'>" . $this->lang->line('yes') . "</span>"; } ?> </td> <td class="mailbox-name"> <?php if ($message['send_sms']) { echo "<i class='fa fa-check-square-o'></i><span class='hide'>" . $this->lang->line('yes') . "</span>"; } ?> </td> <td class="mailbox-name"> <?php if ($message['is_group']) { echo "<i class='fa fa-check-square-o'></i><span class='hide'>" . $this->lang->line('yes') . "</span>"; } ?> </td> <td class="mailbox-name"> <?php if ($message['is_individual']) { echo "<i class='fa fa-check-square-o'></i><span class='hide'>" . $this->lang->line('yes') . "</span>"; } ?> </td> <td class="mailbox-name"> <?php if ($message['is_class']) { echo "<i class='fa fa-check-square-o'></i><span class='hide'>" . $this->lang->line('yes') . "</span>"; } ?> </td> </tr> <?php } ?> </tbody> </table><!-- /.table --> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> </div> </div> <div class="col-md-8"> </div> </div> <div class="row"> <div class="col-md-12"> </div> </div> </section> </div> <script type="text/javascript"> $(document).ready(function () { $('#postdate').datepicker({ format: "dd-mm-yyyy", autoclose: true }); $("#btnreset").click(function () { $("#form1")[0].reset(); }); }); var base_url = '<?php echo base_url() ?>'; function printDiv(elem) { Popup(jQuery(elem).html()); } function Popup(data) { var frame1 = $('<iframe />'); frame1[0].name = "frame1"; frame1.css({"position": "absolute", "top": "-1000000px"}); $("body").append(frame1); var frameDoc = frame1[0].contentWindow ? frame1[0].contentWindow : frame1[0].contentDocument.document ? frame1[0].contentDocument.document : frame1[0].contentDocument; // alert(frameDoc); frameDoc.document.open(); //Create a new HTML document. frameDoc.document.write('<html>'); frameDoc.document.write('<head>'); frameDoc.document.write('<title></title>'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/bootstrap/css/bootstrap.min.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/dist/css/font-awesome.min.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/dist/css/ionicons.min.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/dist/css/AdminLTE.min.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/dist/css/skins/_all-skins.min.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/plugins/iCheck/flat/blue.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/plugins/morris/morris.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/plugins/jvectormap/jquery-jvectormap-1.2.2.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/plugins/datepicker/datepicker3.css">'); frameDoc.document.write('<link rel="stylesheet" href="' + base_url + 'backend/plugins/daterangepicker/daterangepicker-bs3.css">'); frameDoc.document.write('</head>'); frameDoc.document.write('<body>'); frameDoc.document.write(data); frameDoc.document.write('</body>'); frameDoc.document.write('</html>'); frameDoc.document.close(); setTimeout(function () { window.frames["frame1"].focus(); window.frames["frame1"].print(); frame1.remove(); }, 500); return true; } </script> <script> $(document).ready(function () { $('.detail_popover').popover({ placement: 'right', trigger: 'hover', container: 'body', html: true, content: function () { return $(this).closest('td').find('.fee_detail_popover').html(); } }); }); </script>