?
Current Path : /home1/savoy/public_html/savoyglobal.net/futuredraft/application/views/sms/ |
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/futuredraft/application/views/sms/smslist.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $template_details = $this->mastermodel->getdatas('template'); ?> <script type="text/javascript"> $(document).ready(function(){ $('#message').keyup(function(){ var limit = $(this).attr('maxlength'); ($(this).val().length < limit) ? $('.charsLeft').html(limit-$(this).val().length) : $(this).val($(this).val().substr(0,limit)) + $('.charsLeft').html('<span style="color:#ff0000;">0</span>');}); $("#preloader").hide(); }); function usetemplate(status) { var template_id=status.value; if(template_id!=""){ $.ajax({ type: "POST", url: "<?= site_url('sms/gettemplate') ?>/" +template_id, success: function(msg) { $("textarea#message").val(msg); } }); } else{ $("textarea#message").val(""); } } </script> <span id="inner_msg"></span> <div class="icons_main"> <div class="icons"> <img src="<?= base_url() ?>assets/images/back.png" title="Add New" class="clickimage" onclick="addformdisplay('view_bulk_sms','sms')" alt="Add New" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4></h4> </div> </div> <div class="clean"></div> <?php $attributes = array('class' => 'validate', 'id' => 'validateform'); echo form_open('sms/addinsms/insertbulksms/view_bulk_sms/1/', $attributes); ?> <div class="grid_12"> <div class="box"> <div class="header main">SMS Setup </div> <div class="content no-padding"> <table id="" class="table"> <thead> <tr> <th style="width: 17px;">Sl No.</th> <th>Name</th> <th>Nationality</th> <th>Gender</th> <th>Student Reg No</th> <th>Class Code</th> <th>Mobile Number</th> <th style="width: 135px;">Type</th> <th style="width: 70px;"> <input checked name="checkall" id="checkall" type="checkbox" onchange="checkallsms()"/> </th> </tr> </thead> <tbody> <?php $slno = 0; 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"); $class = $this->mastermodel->get_single_field_value('class_name', 'class_name_id', 'class_name_code', $row->class_name_code); $deactivate = $this->studentmodel->check_deactivate($class, $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->class_name_code; ?></td> <td><?= $row->mobile_no; ?></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_mobile_" . $slno; ?>" checked value="<?= $row->mobile_no; ?>" id="check_mobile" class="smscheck" type="checkbox"/> </div> </td> </tr> <?php } } ?> <input name="moblen" value="<?= $slno; ?>" type="hidden"> </tbody> </table> </div> <div class="header main">SMS Information</div> <div class="content no-padding"> <div class="section _100"> <label>Sender ID <span style="font-weight: normal;padding: 0 10px;">(max 8 characters)</span> </label> <div class="single_page"> <input class="text required" maxlength="8" name="sender_id" value="" id="sender_id" type="text" style="width: 70%;" /> </div> </div> <div class="section _100"> <label>Use Template</label> <div class="single_page"> <div style="width: 70%;"> <select name="template_id" id="template_id" 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="section _100"> <label>Message</label> <div class="single_page"> <textarea name="message" class="required" id="message" style="width:70%; height:80px;" maxlength="140" ></textarea> </div> </div> <div class="section _100"> <label>Options</label> <div class="single_page"> <input class="radio" name="status" id="status" type="radio" value="Sent" onchange="hideclassdiv('schedule',this)" checked />Send Now <input class="radio" name="status" id="status" type="radio" value="Saved" onchange="hideclassdiv('schedule',this)" /> Save as Draft </div> </div> </div> <div class="actions"> <input type="hidden" name="resfunction" value="search_bulk_sms"/> <div class="actions-right"> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Send</button> </div> </div> </div> </div> </div> <?php echo form_close(); ?> <span class="section_content_bottom"></span>