[ Avaa Bypassed ]




Upload:

Command:

www-data@18.117.157.139: ~ $
<?php

if (!defined('BASEPATH'))
    exit('No direct script access allowed');

class Student_Model extends MY_Model {
    
    function __construct() {
        parent::__construct();
    }

    
    public function get_student_list($school_id = null, $class_id = null, $section_id = null, $student_id = null, $academic_year_id = null) {

        $this->db->select('S.*, E.roll_no, U.username, U.role_id,  C.name AS class_name, SE.name AS section');
        $this->db->from('enrollments AS E');
        $this->db->join('students AS S', 'S.id = E.student_id', 'left');
        $this->db->join('users AS U', 'U.id = S.user_id', 'left');
        $this->db->join('classes AS C', 'C.id = E.class_id', 'left');
        $this->db->join('sections AS SE', 'SE.id = E.section_id', 'left');
        $this->db->where('E.academic_year_id', $academic_year_id);       
        $this->db->where('E.class_id', $class_id);
        $this->db->where('S.status_type', 'regular');
        
        if($section_id){
            $this->db->where('E.section_id', $section_id);
        }
        
        $this->db->where('S.school_id', $school_id);
        if($student_id){
            $this->db->where('E.student_id', $student_id);
        } 
        
        $this->db->order_by('S.id', 'DESC');
        
        return $this->db->get()->result();
        
    }
    
}

Filemanager

Name Type Size Permission Actions
Admitsetting_Model.php File 1.5 KB 0777
Card_Model.php File 1.89 KB 0777
Employee_Model.php File 840 B 0777
Idsetting_Model.php File 1.49 KB 0777
Student_Model.php File 1.35 KB 0777
Teacher_Model.php File 937 B 0777
index.html File 131 B 0777