?
Current Path : /home1/savoy/public_html/savoyglobal.net/sims/school/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/sims/school/application/views/Sms/viewbulksms.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $class=$this->mastermodel->getdatas('classlevel','sort'); $department=$this->mastermodel->getdatas('department','department_name'); ?> <span class="section_content_top"></span> <div class="section_content_inner"> <?php $attributes=array('class'=>'search_form','id'=>'validateform'); echo form_open('sms/loadsmslist/loadsmslist/smslist/1/',$attributes); ?> <!--[if !IE]>start fieldset<![endif]--> <fieldset> <!--[if !IE]>start forms<![endif]--> <div class="forms"> <h3>Select Contacts</h3> <!--[if !IE]>start row<![endif]--> <div class="table_wrapper"> <div class="table_wrapper_inner"> <table cellpadding="0" cellspacing="0" width="110%"> <tr> <td> <div class="row"> <label>Students</label> <input type="checkbox" name="student_id" id="student_id" onchange="showclassdiv('classstud',this)"/> </div> <!--[if !IE]>end row<![endif]--> </td> <td> <div class="row"> <label>Parents</label> <input type="checkbox" name="parent_id" id="parent_id" onchange="showclassdiv('classpar',this)"/> </div> <!--[if !IE]>end row<![endif]--> </td> <td> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Teachers</label> <input type="checkbox" name="teacher_id" id="teacher_id" onchange="showclassdiv('classteach',this)" /> <!--onchange="showclassdiv('classteach',this)"--> </div> <!--[if !IE]>end row<![endif]--> </td> <td> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Non-Teaching Staff</label> <input type="checkbox" name="staff_id" id="staff_id" onchange="showclassdiv('dept',this)"/> </div> <!--[if !IE]>end row<![endif]--> </td> </tr> <tr> <td> <div id="classstud" style="display: none;"> <table width="75%" align="center" cellpadding="0" cellspacing="0"> <?php foreach ($class as $row) { ?> <tr> <td><?=$row['classlevel_code']?></td> <td><input type="checkbox" name="studclasslevel_id[]" value="<?=$row['classlevel_id']?>" checked /></td> </tr> <?php } ?> </table> </div> </td> <td> <div id="classpar" style="display: none;"> <table width="75%" align="center" cellpadding="0" cellspacing="0"> <?php foreach ($class as $row) { ?> <tr> <td><?=$row['classlevel_code']?></td> <td> <input type="checkbox" name="parclasslevel_id[]" value="<?=$row['classlevel_id']?>" checked /></td> </tr> <?php } ?> </table> </div> </td> <td> <div id="classteach" style="display: none;"> <table width="75%" align="center" cellpadding="0" cellspacing="0"> <?php foreach ($class as $row) { ?> <tr> <td><?=$row['classlevel_code']?></td> <td> <input type="checkbox" name="teachclasslevel_id[]" value="<?=$row['classlevel_id']?>" checked /></td> </tr> <?php } ?> </table> </div> </td> <td> <div id="dept" style="display: none;"> <table width="75%" align="center" cellpadding="0" cellspacing="0"> <?php foreach ($department as $row) { ?> <tr> <td><?=$row['department_name']?></td> <td> <input type="checkbox" name="department_id[]"value="<?=$row['department_id']?>" checked /></td> </tr> <?php } ?> </table> </div> </td> </table> </div> </div> <!--[if !IE]>start row<![endif]--> <div class="row"> <div class="inputs"> <span class="button blue_button search_button" onclick="addformdata('validateform')"><span><span><em>Load List</em></span></span><input name="" type="submit" /></span> </div> </div> </div> <!--[if !IE]>end row<![endif]--> </fieldset> <!--[if !IE]>end fieldset<![endif]--> <?php echo form_close(); ?> </div> <span class="section_content_bottom"></span>