session->set_userdata('top_menu', 'notification'); $data['title'] = 'Notifications'; $user_role = $this->customlib->getUserRole(); if ($user_role == 'student') { $student_id = $this->customlib->getStudentSessionUserID(); $notifications = $this->notification_model->getNotificationForStudent($student_id); } elseif ($user_role == 'parent') { $student_id = $this->customlib->getUsersID(); $notifications = $this->notification_model->getNotificationForParent($student_id); } $notification_bydate = array(); foreach ($notifications as $key => $value) { if (date($this->customlib->getSchoolDateFormat()) >= date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($value['publish_date']))) { $notification_bydate[] = $value; } } $data['notificationlist'] = $notification_bydate; $this->load->view('layout/student/header', $data); $this->load->view('user/notification/notificationList', $data); $this->load->view('layout/student/footer', $data); } public function updatestatus() { $notification_id = $this->input->post('notification_id'); $user_role = $this->customlib->getUserRole(); if ($user_role == 'student') { $student_id = $this->customlib->getStudentSessionUserID(); $data = $this->notification_model->updateStatus($notification_id, $student_id); } elseif ($user_role == 'parent') { $parent_id = $this->customlib->getUsersID(); $data = $this->notification_model->updateStatusforParent($notification_id, $parent_id); } $array = array('status' => "success", 'data' => $data); echo json_encode($array); } public function read() { $array = array('status' => "fail", 'msg' => $this->lang->line('somthing_wrong')); $notification_id = $this->input->post('notice'); if ($notification_id != "") { $student_id = $this->customlib->getStudentSessionUserID(); $data = $this->notification_model->updateStatusforStudent($notification_id, $student_id); $array = array('status' => "success", 'data' => $data, 'msg' => $this->lang->line('update_message')); } echo json_encode($array); } }