[ Avaa Bypassed ]




Upload:

Command:

www-data@18.117.157.139: ~ $
<?php

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

class Promotion_Model extends MY_Model {
    
    function __construct() {
        parent::__construct();
    }
    
      
     public function get_student_list($school_id = null, $class_id = null , $academic_year_id = null){
        
        $this->db->select('S.*, E.roll_no');
        $this->db->from('enrollments AS E');        
        $this->db->join('classes AS C', 'C.id = E.class_id', 'left');
        $this->db->join('students AS S', 'S.id = E.student_id', 'left');
        $this->db->join('academic_years AS AY', 'AY.id = E.academic_year_id', 'left');
        $this->db->where('E.academic_year_id', $academic_year_id);       
        $this->db->where('E.class_id', $class_id);
        $this->db->where('S.school_id', $school_id);
        $this->db->where('S.status_type', 'regular');
        
        $this->db->order_by('E.roll_no', 'ASC');
       
        return $this->db->get()->result();        
    }

}

Filemanager

Name Type Size Permission Actions
Assignment_Model.php File 4.52 KB 0777
Classes_Model.php File 1.3 KB 0777
Liveclass_Model.php File 4.32 KB 0777
Material_Model.php File 2.01 KB 0777
Promotion_Model.php File 1.01 KB 0777
Routine_Model.php File 1.7 KB 0777
Section_Model.php File 2.3 KB 0777
Subject_Model.php File 2.36 KB 0777
Submission_Model.php File 5.79 KB 0777
Syllabus_Model.php File 2.21 KB 0777
index.html File 131 B 0777