[ Avaa Bypassed ]




Upload:

Command:

www-data@18.117.157.139: ~ $
<?php

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

class Type_Model extends MY_Model {
    
    function __construct() {
        parent::__construct();
    }
    
    function duplicate_check($school_id, $name, $id = null ){           
           
        if($id){
            $this->db->where_not_in('id', $id);
        }
        $this->db->where('school_id', $school_id);
        $this->db->where('name', $name);
        return $this->db->get('certificates')->num_rows();            
    }
    
    public function get_student_list($school_id = null, $class_id = null , $academic_year_id = null) {

            $this->db->select('S.*, U.username, U.role_id, U.status AS login_status ');
            $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->where('E.academic_year_id', $academic_year_id);
            $this->db->where('S.school_id', $school_id);
            
            if($class_id){
                $this->db->where('E.class_id', $class_id);
            }            
             
            return $this->db->get()->result();
    }
    
    public function get_student($student_id = null, $class_id = null, $academic_year_id = null ) {

            $this->db->select('S.*, U.username, U.role_id, U.status AS login_status ');
            $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->where('E.academic_year_id', $academic_year_id);
            $this->db->where('S.id', $student_id);
            $this->db->where('E.class_id', $class_id);
                   
             
            return $this->db->get()->row();
    }
}

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