<?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, $academic_year_id = null, $status_type = null){
$this->db->select('S.*, E.roll_no, E.class_id, E.section_id, 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);
if($section_id){
$this->db->where('E.section_id', $section_id);
}
if($this->session->userdata('role_id') == TEACHER){
$this->db->where('SE.teacher_id', $this->session->userdata('profile_id'));
}
if($status_type){
$this->db->where('S.status_type', $status_type);
}
$this->db->where('S.school_id', $school_id);
return $this->db->get()->result();
}
public function get_student_attendance_list($school_id, $academic_year_id, $class_id, $section_id = null){
$this->db->select('E.roll_no, S.id, S.name');
$this->db->from('enrollments AS E');
$this->db->join('students AS S', 'S.id = E.student_id', 'left');
$this->db->where('E.academic_year_id', $academic_year_id);
$this->db->where('E.class_id', $class_id);
if($section_id){
$this->db->where('E.section_id', $section_id);
}
$this->db->where('S.school_id', $school_id);
if($this->session->userdata('role_id') == GUARDIAN){
$this->db->where('S.guardian_id', $this->session->userdata('profile_id'));
}
return $this->db->get()->result();
}
}