ok
Direktori : /proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/alumni/ |
Current File : //proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/alumni/alumnilist.php |
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <style type="text/css"> </style> <link rel="stylesheet" href="<?php echo base_url(); ?>backend/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css"> <script src="<?php echo base_url(); ?>backend/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js"></script> <div class="content-wrapper" style="min-height: 946px;"> <section class="content-header"> <h1> <i class="fa fa-user-plus"></i> <?php echo $this->lang->line('student_information'); ?> <small><?php echo $this->lang->line('student1'); ?></small></h1> </section> <!-- Main content --> <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"><i class="fa fa-search"></i> <?php echo $this->lang->line('select_criteria'); ?></h3> </div> <div class="box-body"> <?php if ($this->session->flashdata('msg')) { ?> <div class="alert alert-success"> <?php echo $this->session->flashdata('msg') ?> </div> <?php } ?> <div class="row"> <div class="col-md-5"> <div class="row"> <form role="form" action="<?php echo site_url('admin/alumni/alumnilist') ?>" method="post" class=""> <?php echo $this->customlib->getCSRF(); ?> <div class="col-sm-4"> <div class="form-group"> <label><?php echo $this->lang->line('pass_out_session'); ?></label> <small class="req"> *</small> <select autofocus="" id="session_id" name="session_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($sessionlist as $sessions) { ?> <option value="<?php echo $sessions['id'] ?>" <?php if (set_value('session_id') == $sessions['id']) echo "selected=selected" ?>><?php echo $sessions['session'] ?></option> <?php $count++; } ?> </select> <span class="text-danger"><?php echo form_error('session_id'); ?></span> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label><?php echo $this->lang->line('class'); ?></label> <small class="req"> *</small> <select autofocus="" id="class_id" name="class_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($classlist as $class) { ?> <option value="<?php echo $class['id'] ?>" <?php if (set_value('class_id') == $class['id']) echo "selected=selected" ?>><?php echo $class['class'] ?></option> <?php $count++; } ?> </select> <span class="text-danger"><?php echo form_error('class_id'); ?></span> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label><?php echo $this->lang->line('section'); ?></label> <select id="section_id" name="section_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> </select> <span class="text-danger"><?php echo form_error('section_id'); ?></span> </div> </div> <div class="col-sm-12"> <div class="form-group"> <button type="submit" name="search" value="search_filter" class="btn btn-primary btn-sm pull-right checkbox-toggle"><i class="fa fa-search"></i> <?php echo $this->lang->line('search'); ?></button> </div> </div> </form> </div> </div><!--./col-md-6--> <div class="col-md-2"> <div class="row"> </div> </div> <div class="col-md-5"> <div class="row"> <form role="form" action="<?php echo site_url('admin/alumni/alumnilist') ?>" method="post" class=""> <?php echo $this->customlib->getCSRF(); ?> <div class="col-sm-12"> <div class="form-group"> <label><?php echo $this->lang->line('search_by_admission_number'); ?></label> <input type="text" name="search_text" value="<?php echo set_value('search_text');?>" class="form-control" placeholder="<?php echo $this->lang->line('search_by_admission_number')?>"> </div> </div> <div class="col-sm-12"> <div class="form-group"> <button type="submit" name="search" value="search_full" class="btn btn-primary pull-right btn-sm checkbox-toggle"><i class="fa fa-search"></i> <?php echo $this->lang->line('search'); ?></button> </div> </div> </form> </div> </div><!--./col-md-6--> </div><!--./row--> </div> <?php if (isset($resultlist)) { ?> <div class="nav-tabs-custom border0 navnoshadow"> <div class="box-header ptbnull"></div> <ul class="nav nav-tabs"> <li class="active"><a href="#tab_1" data-toggle="tab" aria-expanded="true"><i class="fa fa-list"></i> <?php echo $this->lang->line('list'); ?> <?php echo $this->lang->line('view'); ?></a></li> <li class=""><a href="#tab_2" data-toggle="tab" aria-expanded="false"><i class="fa fa-newspaper-o"></i> <?php echo $this->lang->line('details'); ?> <?php echo $this->lang->line('view'); ?></a></li> </ul> <div class="tab-content"> <div class="download_label"><?php echo $title; ?></div> <div class="tab-pane active table-responsive no-padding" id="tab_1"> <table class="table table-striped table-bordered table-hover example" cellspacing="0" width="100%"> <thead> <tr> <th><?php echo $this->lang->line('admission_no'); ?></th> <th><?php echo $this->lang->line('student_name'); ?></th> <th><?php echo $this->lang->line('class'); ?></th> <th><?php echo $this->lang->line('gender'); ?></th> <th><?php echo $this->lang->line('current_email'); ?></th> <th><?php echo $this->lang->line('current_phone'); ?></th> <th class="text-right"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php if (empty($resultlist)) { ?> <?php } else { $count = 1; foreach ($resultlist as $student) { ?> <tr> <td><?php echo $student['admission_no']; ?></td> <td> <?php echo $student['firstname'] . " " . $student['lastname']; ?> </td> <td><?php echo $student['class']; ?></td> <td><?php echo $student['gender']; ?></td> <td><?php if (array_key_exists($student['id'],$alumni_studets)) { echo $alumni_studets[$student['id']]['current_email']; } ?></td> <td><?php if (array_key_exists($student['id'],$alumni_studets)) { echo $alumni_studets[$student['id']]['current_phone']; } ?></td> <td class="pull-right"> <?php if (array_key_exists($student['id'],$alumni_studets)) { if($this->rbac->hasPrivilege('manage_alumni','can_edit')){ ?> <a href="#" onclick="add('<?php echo $student['id']; ?>')" class="btn btn-default btn-xs" data-toggle="tooltip" title="" data-placement="left" data-original-title="<?php echo $this->lang->line('edit')?>"><i class="fa fa-pencil"></i></a> <?php } if($this->rbac->hasPrivilege('manage_alumni','can_delete')){ ?> <a href="#" onclick="deletestudent('<?php echo $student['id']; ?>')" data-placement="left" data-toggle="tooltip" class="btn btn-default btn-xs" title="<?php echo $this->lang->line('delete')?>"><i class="fa fa-remove"></i></a> <?php }} else { if($this->rbac->hasPrivilege('manage_alumni','can_add')){ ?> <a href="#" onclick="add('<?php echo $student['id']; ?>')" class="btn btn-default btn-xs" data-placement="left" data-toggle="tooltip" title="" data-original-title="<?php echo $this->lang->line('add')?>"> <i class="fa fa-plus"></i> </a> <?php }} ?> </td> </tr> <?php $count++; } } ?> </tbody> </table> </div> <div class="tab-pane" id="tab_2"> <?php if (empty($resultlist)) { ?> <div class="alert alert-info"><?php echo $this->lang->line('no_record_found'); ?></div> <?php } else { $count = 1; foreach ($resultlist as $student) { if (empty($student["image"])) { $image = "uploads/student_images/no_image.png"; } elseif(array_key_exists($student['id'],$alumni_studets)) { $image = $alumni_studets[$student['id']]['photo']; }else{ $image = $student['image']; } ?> <div class="carousel-row"> <div class="slide-row"> <div id="carousel-2" class="carousel slide slide-carousel" data-ride="carousel"> <div class="carousel-inner"> <div class="item active"> <a href="<?php echo base_url(); ?>student/view/<?php echo $student['id'] ?>"> <img class="img-responsive img-thumbnail width150" alt="<?php echo $student["firstname"] . " " . $student["lastname"] ?>" src="<?php echo base_url() . $image; ?>" alt="Image"></a> </div> </div> </div> <div class="slide-content"> <h4><a href="<?php echo base_url(); ?>student/view/<?php echo $student['id'] ?>"> <?php echo $student['firstname'] . " " . $student['lastname'] ?></a></h4> <div class="row"> <div class="col-xs-6 col-md-6"> <address> <strong><b><?php echo $this->lang->line('class'); ?>: </b><?php echo $student['class']; ?></strong><br> <b><?php echo $this->lang->line('admission_no'); ?>: </b><?php echo $student['admission_no'] ?><br/> <b><?php echo $this->lang->line('date_of_birth'); ?>: <?php echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($student['dob'])); ?><br> <b><?php echo $this->lang->line('gender'); ?>: </b><?php echo $student['gender'] ?><br> <b><?php echo $this->lang->line('national_identification_no'); ?>: </b><?php echo $student['adhar_no'] ?><br> </address> </div> <div class="col-xs-6 col-md-6"> <b><?php echo $this->lang->line('current_phone'); ?>: </b> <abbr title="Phone"><i class="fa fa-phone-square"></i> </abbr> <?php if(array_key_exists($student['id'],$alumni_studets)) { echo $alumni_studets[$student['id']]['current_phone']; }?><br> <b> <b><?php echo $this->lang->line('current_email'); ?>: </b> <abbr title="Phone"> </abbr> <?php if(array_key_exists($student['id'],$alumni_studets)) { echo $alumni_studets[$student['id']]['current_email']; }?><br> <b><?php echo $this->lang->line('current_address'); ?>: </b><?php if(array_key_exists($student['id'],$alumni_studets)) { echo $alumni_studets[$student['id']]['address']; }else{ echo $student['current_address']; } ?> <?php echo $student['city'] ?><br> <?php if(array_key_exists($student['id'],$alumni_studets)) { ?><b><?php echo $this->lang->line('occupation'); ?>: </b><?php echo $alumni_studets[$student['id']]['occupation']; }?> <br> </div> </div> </div> <div class="slide-footer"> <span class="pull-right buttons"> <?php if (array_key_exists($student['id'],$alumni_studets)) { if($this->rbac->hasPrivilege('manage_alumni','can_edit')){ ?> <a href="#" onclick="add('<?php echo $student['id']; ?>')" class="btn btn-default btn-xs" data-toggle="tooltip" title="" data-original-title="<?php echo $this->lang->line('edit')?>"><i class="fa fa-pencil"></i></a> <a href="#" onclick="deletestudent('<?php echo $student['id']; ?>')" data-toggle="tooltip" class="btn btn-default btn-xs" title="<?php echo $this->lang->line('delete')?>"><i class="fa fa-remove"></i></a> <?php }} else { if($this->rbac->hasPrivilege('manage_alumni','can_add')){ ?> <a href="#" onclick="add('<?php echo $student['id']; ?>')" class="btn btn-default btn-xs" data-toggle="tooltip" title="" data-original-title="<?php echo $this->lang->line('add')?>"> <i class="fa fa-plus"></i> </a> <?php }} ?> </span> </div> </div> </div> <?php } $count++; } ?> </div> </div> </div> </div><!--./box box-primary --> <?php } ?> </div> </div> </section> </div> <div class="modal fade" id="add_alumni" tabindex="-1" role="dialog" aria-labelledby="evaluation" style="padding-left: 0 !important"> <div class="modal-dialog modal-lg" role="document"> <div class="modal-content modal-media-content"> <div class="modal-header modal-media-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="box-title"> <?php echo $this->lang->line('add')." ".$this->lang->line('alumni')." ".$this->lang->line('details'); ?></h4> </div> <div class="modal-body pt0 pb0" > <form id="formadd" method="post" class="ptt10" enctype="multipart/form-data"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12"> <div class="row"> <input type="hidden" id="student_id" name="student_id"> <input type="hidden" id="id" name="id"> <div class="col-sm-6"> <div class="form-group"> <label for="pwd"><?php echo $this->lang->line('current_phone'); ?></label><small class="req"> *</small> <input type="text" id="current_phone" name="current_phone" class="form-control"> </div> </div> <div class="col-sm-6"> <div class="form-group"> <label for="pwd"><?php echo $this->lang->line('current_email'); ?></label> <input type="text" id="current_email" name="current_email" class="form-control" > </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('occupation'); ?></label> <textarea name="occupation" id="occupation" class="form-control" > </textarea> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('address'); ?></label> <textarea name="address" id="address" class="form-control" > </textarea> </div> </div> <div class="col-sm-12"> <div class="form-group"> <label for="pwd"><?php echo $this->lang->line('photo'); ?></label> <input type="file" id="file" name="file" class="form-control filestyle"> </div> </div> </div><!--./row--> </div><!--./col-md-12--> </div><!--./row--> </div><!--./row--> <div class="box-footer"> <div class="pull-right paddA10"> <button type="submit" class="btn btn-info" id="submit" data-loading-text="<i class='fa fa-spinner fa-spin '></i> Please wait"><?php echo $this->lang->line('save') ?></button> </div> </div> </form> </div> </div> </div> </div> <script type="application/javascript"> function deletestudent(id){ var result = confirm("<?php echo $this->lang->line('delete_confirm'); ?>"); if(result){ $.ajax({ url: "<?php echo base_url();?>admin/alumni/deletestudent/"+id, type: "POST", success: function (res) { successMsg('<?php echo $this->lang->line("delete_message"); ?>'); window.location.reload(true); }, error: function (xhr) { // if error occured alert("Error occured.please try again"); }, complete: function () { } }); } } </script> <script type="text/javascript"> function add(student_id){ $.ajax({ type: "POST", url: base_url + "admin/alumni/get_alumnidetails", data: {'student_id': student_id}, dataType: "json", success: function (data) { $('#id').val(data.id); $('#current_email').val(data.current_email); $('#current_phone').val(data.current_phone); $('#occupation').val(data.occupation); $('#address').val(data.address); $('#student_id').val(student_id); $("#add_alumni").modal("show"); } }); } $("#formadd").on('submit', (function (e) { e.preventDefault(); var $this = $(this).find("button[type=submit]:focus"); $.ajax({ url: "<?php echo site_url("admin/alumni/add") ?>", type: "POST", data: new FormData(this), dataType: 'json', contentType: false, cache: false, processData: false, beforeSend: function () { $this.button('loading'); }, success: function (res) { if (res.status == "fail") { var message = ""; $.each(res.error, function (index, value) { message += value; }); errorMsg(message); } else { successMsg(res.message); window.location.reload(true); } }, error: function (xhr) { // if error occured alert("Error occured.please try again"); $this.button('reset'); }, complete: function () { $this.button('reset'); } }); })); function getSectionByClass(class_id, section_id) { if (class_id != "" && section_id != "") { $('#section_id').html(""); var base_url = '<?php echo base_url() ?>'; var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>'; $.ajax({ type: "GET", url: base_url + "sections/getByClass", data: {'class_id': class_id}, dataType: "json", success: function (data) { $.each(data, function (i, obj) { var sel = ""; if (section_id == obj.section_id) { sel = "selected"; } div_data += "<option value=" + obj.section_id + " " + sel + ">" + obj.section + "</option>"; }); $('#section_id').append(div_data); } }); } } $(document).ready(function () { var class_id = $('#class_id').val(); var section_id = '<?php echo set_value('section_id') ?>'; getSectionByClass(class_id, section_id); $(document).on('change', '#class_id', function (e) { $('#section_id').html(""); var class_id = $(this).val(); var base_url = '<?php echo base_url() ?>'; var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>'; $.ajax({ type: "GET", url: base_url + "sections/getByClass", data: {'class_id': class_id}, dataType: "json", success: function (data) { $.each(data, function (i, obj) { div_data += "<option value=" + obj.section_id + ">" + obj.section + "</option>"; }); $('#section_id').append(div_data); } }); }); }); </script>