?
Current Path : /home1/savoy/public_html/savoyglobal.net/sec/draft/application/views/email/ |
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/draft/application/views/email/emaillist.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $this->load->view('commonfunctions'); $template_details = $this->mastermodel->getdatas('emailtemplate'); ?> <link rel="stylesheet" type="text/css" href="<?=base_url()?>assets/css/jquery.wysiwyg.css" media="screen" /> <script type="text/javascript" src="<?=base_url()?>assets/scripts/jquery.wysiwyg.js"></script> <script type="text/javascript"> $(function() { $('.wysiwyg').wysiwyg( { controls : { separator01 : { visible : true }, separator03 : { visible : true }, separator04 : { visible : true }, separator00 : { visible : true }, separator07 : { visible : false }, separator02 : { visible : false }, separator08 : { visible : false }, insertOrderedList : { visible : true }, insertUnorderedList : { visible : true }, undo: { visible : true }, redo: { visible : true }, justifyLeft: { visible : true }, justifyCenter: { visible : true }, justifyRight: { visible : true }, justifyFull: { visible : true }, subscript: { visible : true }, superscript: { visible : true }, underline: { visible : true }, increaseFontSize : { visible : false }, decreaseFontSize : { visible : false } } } ); }); </script> <!-- BEGIN PAGE LEVEL STYLES --> <link rel="stylesheet" href="<?= base_url(); ?>assets/plugins/data-tables/DT_bootstrap.css" /> <!-- END PAGE LEVEL STYLES --> <div class="row-fluid"> <div class="span12"> <!-- BEGIN EXAMPLE TABLE PORTLET--> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption" ><i class="icon-cogs"></i>Send Email</div> <div class="actions"> <a href="#" onclick="addformdisplay('view_send_email','email')" class="btn green"><i class="icon-plus"></i> Add</a> </div> </div> <div class="portlet-body"> <?php $attributes=array('id'=>'validateform','class'=>'validate'); echo form_open('email/addinemail/insertemail/view_send_email/1/', $attributes); ?> <table class="table table-striped table-hover table-bordered" > <thead> <tr> <th style="width: 17px;">Sl No.</th> <th>Name</th> <th>Nationality</th> <th>Gender</th> <th>Student Reg No</th> <th>Batch Code</th> <th>Email</th> <th style="width: 135px;">Type</th> <th style="width: 70px;"> <input name="checkall" checked id="checkall" type="checkbox" onchange="checkasll(this)"/> </th> </tr> </thead> <tbody> <?php $slno = 0; if(!empty ($viewinfo)) { if ($viewinfo->num_rows() > 0) { $sorLst1 = array(); $list = $viewinfo->result(); foreach ($list as $user) {$sorLst[] = $user->master_id;} array_multisort($sorLst, SORT_ASC, $list); $list1=array(); foreach ($list as $row) { if($row->type=='Father' || $row->type=='Mother' || $row->type=='Student') { $std_id=$this->mastermodel->get_single_field_value('student','student_id','reg_no',$row->reg); $date=date("d-m-Y"); $batch=$this->mastermodel->get_single_field_value('batch','batch_id','batch_no',$row->batch_no); $deactivate=$this->studentmodel->check_deactivate($batch,$std_id,$date); if($deactivate==0) { $list1[]=$row; } } else { $list1[]=$row; } } $temp=""; foreach ($list1 as $row) { ?> <tr <?php if ($slno % 2 == 0) { ?>class="first" <?php } else { ?> class="second" <?php } ?>> <td><?php if($temp!=$row->sort_id) { echo ++$slno; } $temp=$row->sort_id; ?> </td> <td><?= $row->name; ?></td> <td><?= $row->nationality; ?></td> <td><?= $row->gender; ?></td> <?php if($row->type=='Father' || $row->type=='Mother' || $row->type=='Student') { ?> <td><?=$row->reg;?></td> <?php } else { ?> <td></td> <?php } ?> <td><?=$row->batch_no;?></td> <td><?= $row->email; ?></td> <td><?= $row->type; ?></td> <td> <div class="actions_menu"> <input type="hidden" name="<?php echo "receipent_name_" . $slno; ?>" value="<?= $row->name; ?>"/> <input type="hidden" name="<?php echo "receipent_type_" . $slno; ?>" value="<?= $row->type; ?>"/> <input name="<?php echo "check_email_" . $slno; ?>" checked value="<?= $row->email; ?>" id="check_email" type="checkbox"/> </div> </td> </tr> <?php } } } ?> <input name="email_count" value="<?= $slno; ?>" type="hidden"> </tbody> </table> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Email Information</div> </div> <div class="portlet-body form"> <div class="row-fluid"> <div class="control-group"> <label class="control-label">Use Template</label> <div class="controls"> <select name="template_id" id="template_id" class="span12" onchange="usetemplate(this)"> <option value="" selected>Select Template</option> <?php foreach ($template_details as $row) { ?> <option value="<?= $row['template_id'] ?>"><?= $row['template_title'] ?></option> <?php } ?> </select> </div> </div> </div> <div class="row-fluid"> <div class="control-group"> <label class="control-label">Subject</label> <div class="controls"> <input type="text" class="required span12" name="template_subject" cols="50" id="template_subject" /> </div> </div> </div> <div class="row-fluid"> <div class="control-group"> <label class="control-label">Contents</label> <div class="controls"> <div id="msg_notemp"> <textarea name="template_contents" class="required wysiwyg span12" cols="50" rows="15" style=" margin: 10px 0;"></textarea> </div> <div id="msg_temp"> </div> </div> </div> </div> </div> </div> <div class="form-actions"> <input type="hidden" name="resfunction" value="search_send_email"/> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Send</button> </div> <?php echo form_close(); ?> </div> </div> </div> </div> <div style='display:none'> <div id="uploaddiv"></div> </div> <div id="ajax-modal" class="modal hide fade" tabindex="-1"></div> <script> jQuery(document).ready(function() { UIModals.init(); TableManaged.init(); }); </script>