ok
Direktori : /home2/selectio/public_html/bharath/application/models/ |
Current File : /home2/selectio/public_html/bharath/application/models/Syllabus_model.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class syllabus_model extends CI_Model { public function __construct() { parent::__construct(); $this->current_session = $this->setting_model->getCurrentSession(); $this->current_session_name = $this->setting_model->getCurrentSessionName(); $this->start_month = $this->setting_model->getStartMonth(); } public function getmysubjects($class_id,$section_id){ $sql="SELECT subject_group_subjects.id as subject_group_subjects_id,subject_group_class_sections.id as subject_group_class_sections_id,subjects.name,subjects.code,subjects.id as subject_id FROM `class_sections` join subject_group_class_sections on subject_group_class_sections.class_section_id=class_sections.id join subject_group_subjects on subject_group_subjects.subject_group_id=subject_group_class_sections.subject_group_id join subjects on subject_group_subjects.subject_id=subjects.id WHERE class_sections.class_id=".$this->db->escape($class_id)." and class_sections.section_id=".$this->db->escape($section_id); $query = $this->db->query($sql); return $query->result(); } public function get_subjectstatus($id,$subject_group_class_sections_id){ $sql="SELECT COUNT(CASE WHEN topic.status = 0 then 1 ELSE NULL END) as 'incomplete', COUNT(CASE WHEN topic.status = 1 then 1 ELSE NULL END) as 'complete',count('*') as total FROM `lesson` inner join topic on lesson.id=topic.lesson_id WHERE lesson.subject_group_class_sections_id=".$this->db->escape($subject_group_class_sections_id)." and `subject_group_subject_id`=".$this->db->escape($id); $query = $this->db->query($sql); return $query->result(); } public function get_subject_syllabus($data,$staff_id){ $this->db->select('subject_syllabus.*,subject_groups.name as sgname,subjects.name as subname,subjects.code as scode,sections.section as sname,classes.class as cname,lesson.name as lessonname,topic.name as topic_name')->from('subject_syllabus'); //$this->db->where('subject_syllabus.id', $id) $this->db->where("subject_syllabus.id",$data['id']); if($data['role_id']!=7){ $this->db->where('subject_syllabus.created_for',$staff_id); } $this->db->where('subject_syllabus.session_id', $this->current_session); $this->db->join("topic","topic.id = subject_syllabus.topic_id"); $this->db->join("lesson","lesson.id = topic.lesson_id"); $this->db->join("subject_group_subjects","subject_group_subjects.id = lesson.subject_group_subject_id"); $this->db->join("subject_groups","subject_groups.id = subject_group_subjects.subject_group_id"); $this->db->join("subjects","subjects.id = subject_group_subjects.subject_id"); $this->db->join("subject_group_class_sections","subject_group_class_sections.id = lesson.subject_group_class_sections_id",'inner'); $this->db->join("class_sections","class_sections.id = subject_group_class_sections.class_section_id"); $this->db->join("sections","sections.id = class_sections.section_id"); $this->db->join("classes","classes.id = class_sections.class_id"); $this->db->group_by("lesson.subject_group_subject_id"); $this->db->group_by("topic.lesson_id"); $query = $this->db->get(); return $query->result_array(); } public function get_subject_syllabus_student($data){ $this->db->select('subject_syllabus.*,subject_groups.name as sgname,subjects.name as subname,subjects.code as scode,sections.section as sname,classes.class as cname,lesson.name as lessonname,topic.name as topic_name')->from('subject_syllabus'); $this->db->join("topic","topic.id = subject_syllabus.topic_id"); $this->db->join("lesson","lesson.id = topic.lesson_id"); $this->db->join("subject_group_subjects","subject_group_subjects.id = lesson.subject_group_subject_id"); $this->db->join("subject_groups","subject_groups.id = subject_group_subjects.subject_group_id"); $this->db->join("subjects","subjects.id = subject_group_subjects.subject_id"); $this->db->join("subject_group_class_sections","subject_group_class_sections.id = lesson.subject_group_class_sections_id",'inner'); $this->db->join("class_sections","class_sections.id = subject_group_class_sections.class_section_id"); $this->db->join("sections","sections.id = class_sections.section_id"); $this->db->join("classes","classes.id = class_sections.class_id"); $this->db->where("lesson.subject_group_subject_id",$data['subject_group_subject_id']); $this->db->where("lesson.subject_group_class_sections_id",$data['subject_group_class_section_id']); $this->db->where('subject_syllabus.date',$data['date']); $this->db->where('subject_syllabus.time_from',$data['time_from']); $this->db->where('subject_syllabus.time_to',$data['time_to']); $this->db->where('subject_syllabus.session_id', $this->current_session); $this->db->group_by("subject_syllabus.id"); $query = $this->db->get(); // echo $this->db->last_query();die; return $query->row_array(); } public function get_subject_syllabusdatabyid($id){ $this->db->select('subject_syllabus.*,lesson.subject_group_subject_id as subject_group_subject_id,lesson.subject_group_class_sections_id,lesson.id as lesson_id')->from('subject_syllabus')->join('topic','topic.id=subject_syllabus.topic_id')->join('lesson','lesson.id=topic.lesson_id'); $this->db->where("subject_syllabus.id",$id); $query = $this->db->get(); return $query->row_array(); } public function get_subject_syllabusdata($subject_group_subject_id,$date,$role_id,$staff_id,$time_from,$time_to,$subject_group_class_sections_id){ $this->db->select('count(*) as total,subject_syllabus.id') ->from('subject_syllabus')->join('topic','topic.id=subject_syllabus.topic_id','inner') ->join('lesson','topic.lesson_id=lesson.id','inner') ->where("lesson.subject_group_subject_id",$subject_group_subject_id) ->where("subject_syllabus.date",$date) ->where("subject_syllabus.time_from",$time_from) ->where("subject_syllabus.time_to",$time_to) ->where('lesson.subject_group_class_sections_id',$subject_group_class_sections_id); if($role_id!=7){ $this->db->where('subject_syllabus.created_for',$staff_id); } $query = $this->db->get(); return $query->result_array(); } public function get_subjectteachersreport($subject_group_subject_id,$subject_group_class_sections_id){ $this->db->select('GROUP_CONCAT(subject_syllabus.id) as subject_syllabus_id,CONCAT_WS(" ",staff.name,staff.surname,"(",staff.employee_id,")") as name,count(subject_syllabus.id) as total_priodes,subjects.name as subject_name,subjects.code') ->from('subject_syllabus')->join('topic','topic.id=subject_syllabus.topic_id')->join('lesson','lesson.id=topic.lesson_id') ->join('staff','staff.id=subject_syllabus.created_for'); $this->db->join("subject_group_subjects","subject_group_subjects.id = lesson.subject_group_subject_id"); $this->db->join("subject_groups","subject_groups.id = subject_group_subjects.subject_group_id"); $this->db->join("subjects","subjects.id = subject_group_subjects.subject_id"); $this->db->where("lesson.subject_group_subject_id",$subject_group_subject_id) ->where("lesson.subject_group_class_sections_id",$subject_group_class_sections_id); $this->db->group_by("subject_syllabus.created_for"); $query = $this->db->get(); return $query->result_array(); } public function get_subjectsyllabussreport($subject_group_subject_id,$subject_group_class_sections_id){ return $this->db->select('id,name')->from('lesson')->where('subject_group_subject_id',$subject_group_subject_id)->where('subject_group_class_sections_id',$subject_group_class_sections_id)->get()->result_array(); } public function get_topicbylessonid($lesson_id){ return $this->db->select('topic.id,topic.name,status,complete_date')->from('topic')->join('lesson','lesson.id=topic.lesson_id')->where('lesson_id',$lesson_id)->get()->result_array(); } public function get_subjectsyllabusbyid($id){ return $this->db->select('subject_syllabus.*,lesson.name as lesson_name,topic.name as topic_name')->from('subject_syllabus')->join('topic','topic.id=subject_syllabus.topic_id')->join('lesson','lesson.id=topic.lesson_id')->where('subject_syllabus.id',$id)->get()->row_array(); } }