Server IP : 192.185.129.71 / Your IP : 3.135.213.128 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/school/application/controllers/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Student extends CI_Controller { function __construct() { parent::__construct(); $this->load->database(); $this->load->library('session'); $this->load->model('stripe_model'); $this->load->model('paypal_model'); $this->load->model(array('Ajaxdataload_model' => 'ajaxload')); $this->load->model('Library_model'); /*cache control*/ $this->output->set_header('Last-Modified: ' . gmdate("D, d M Y H:i:s") . ' GMT'); $this->output->set_header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); $this->output->set_header('Pragma: no-cache'); $this->output->set_header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); } /***default functin, redirects to login page if no admin logged in yet***/ public function index() { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); if ($this->session->userdata('student_login') == 1) redirect(site_url('student/dashboard'), 'refresh'); } /***ADMIN DASHBOARD***/ function dashboard() { if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); $page_data['page_name'] = 'dashboard'; $page_data['page_title'] = get_phrase('student_dashboard'); $this->load->view('backend/index', $page_data); } /****MANAGE TEACHERS*****/ function teacher_list($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); if ($param1 == 'personal_profile') { $page_data['personal_profile'] = true; $page_data['current_teacher_id'] = $param2; } $page_data['teachers'] = $this->db->get('teacher')->result_array(); $page_data['page_name'] = 'teacher'; $page_data['page_title'] = get_phrase('manage_teacher'); $this->load->view('backend/index', $page_data); } /***********************************************************************************************************/ /****MANAGE SUBJECTS*****/ function subject($param1 = '', $param2 = '') { if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); $student_profile = $this->db->get_where('student', array( 'student_id' => $this->session->userdata('student_id') ))->row(); $student_class_id = $this->db->get_where('enroll' , array( 'student_id' => $student_profile->student_id, 'year' => $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description ))->row()->class_id; $page_data['subjects'] = $this->db->get_where('subject', array( 'class_id' => $student_class_id, 'year' => $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description ))->result_array(); $page_data['page_name'] = 'subject'; $page_data['page_title'] = get_phrase('manage_subject'); $this->load->view('backend/index', $page_data); } function student_marksheet($student_id = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); if($student_id != $this->session->userdata('login_user_id')) { $this->session->set_flashdata('error_message', get_phrase('no_direct_script_access_allowed')); redirect(site_url('student/dashboard'), 'refresh'); } $class_id = $this->db->get_where('enroll' , array( 'student_id' => $student_id , 'year' => $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description ))->row()->class_id; $student_name = $this->db->get_where('student' , array('student_id' => $student_id))->row()->name; $class_name = $this->db->get_where('class' , array('class_id' => $class_id))->row()->name; $page_data['page_name'] = 'student_marksheet'; $page_data['page_title'] = get_phrase('marksheet_for') . ' ' . $student_name . ' (' . get_phrase('class') . ' ' . $class_name . ')'; $page_data['student_id'] = $student_id; $page_data['class_id'] = $class_id; $this->load->view('backend/index', $page_data); } function student_marksheet_print_view($student_id , $exam_id) { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $class_id = $this->db->get_where('enroll' , array( 'student_id' => $student_id , 'year' => $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description ))->row()->class_id; $class_name = $this->db->get_where('class' , array('class_id' => $class_id))->row()->name; $page_data['student_id'] = $student_id; $page_data['class_id'] = $class_id; $page_data['exam_id'] = $exam_id; $this->load->view('backend/student/student_marksheet_print_view', $page_data); } /**********MANAGING CLASS ROUTINE******************/ function class_routine($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); $student_profile = $this->db->get_where('student', array( 'student_id' => $this->session->userdata('student_id') ))->row(); $page_data['class_id'] = $this->db->get_where('enroll' , array( 'student_id' => $student_profile->student_id, 'year' => $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description ))->row()->class_id; $page_data['student_id'] = $student_profile->student_id; $page_data['page_name'] = 'class_routine'; $page_data['page_title'] = get_phrase('class_routine'); $this->load->view('backend/index', $page_data); } function class_routine_print_view($class_id , $section_id) { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $page_data['class_id'] = $class_id; $page_data['section_id'] = $section_id; $this->load->view('backend/admin/class_routine_print_view' , $page_data); } // ACADEMIC SYLLABUS function academic_syllabus($student_id = '') { if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); $page_data['page_name'] = 'academic_syllabus'; $page_data['page_title'] = get_phrase('academic_syllabus'); $page_data['student_id'] = $student_id; $this->load->view('backend/index', $page_data); } function download_academic_syllabus($academic_syllabus_code) { $file_name = $this->db->get_where('academic_syllabus', array( 'academic_syllabus_code' => $academic_syllabus_code ))->row()->file_name; $this->load->helper('download'); $data = file_get_contents("uploads/syllabus/" . $file_name); $name = $file_name; force_download($name, $data); } /******MANAGE BILLING / INVOICES WITH STATUS*****/ function invoice($param1 = '', $param2 = '', $param3 = '') { //if($this->session->userdata('student_login')!=1)redirect(base_url() , 'refresh'); if ($param1 == 'make_payment') { $invoice_id = $this->input->post('invoice_id'); $system_settings = $this->db->get_where('settings', array( 'type' => 'paypal_email' ))->row(); $invoice_details = $this->db->get_where('invoice', array( 'invoice_id' => $invoice_id ))->row(); /****TRANSFERRING USER TO PAYPAL TERMINAL****/ $this->paypal->add_field('rm', 2); $this->paypal->add_field('no_note', 0); $this->paypal->add_field('item_name', $invoice_details->title); $this->paypal->add_field('amount', $invoice_details->amount); $this->paypal->add_field('custom', $invoice_details->invoice_id); $this->paypal->add_field('business', $system_settings->description); $this->paypal->add_field('notify_url', site_url('invoice/paypal_ipn')); $this->paypal->add_field('cancel_return', site_url('invoice/paypal_cancel')); $this->paypal->add_field('return', site_url('invoice/paypal_success')); $this->paypal->submit_paypal_post(); // submit the fields to paypal } if ($param1 == 'paypal_ipn') { if ($this->paypal->validate_ipn() == true) { $ipn_response = ''; foreach ($_POST as $key => $value) { $value = urlencode(stripslashes($value)); $ipn_response .= "\n$key=$value"; } $data['payment_details'] = $ipn_response; $data['payment_timestamp'] = strtotime(date("m/d/Y")); $data['payment_method'] = 'paypal'; $data['status'] = 'paid'; $invoice_id = $_POST['custom']; $this->db->where('invoice_id', $invoice_id); $this->db->update('invoice', $data); $data2['method'] = 'paypal'; $data2['invoice_id'] = $_POST['custom']; $data2['timestamp'] = strtotime(date("m/d/Y")); $data2['payment_type'] = 'income'; $data2['title'] = $this->db->get_where('invoice' , array('invoice_id' => $data2['invoice_id']))->row()->title; $data2['description'] = $this->db->get_where('invoice' , array('invoice_id' => $data2['invoice_id']))->row()->description; $data2['student_id'] = $this->db->get_where('invoice' , array('invoice_id' => $data2['invoice_id']))->row()->student_id; $data2['amount'] = $this->db->get_where('invoice' , array('invoice_id' => $data2['invoice_id']))->row()->amount; $this->db->insert('payment' , $data2); } } if ($param1 == 'paypal_cancel') { $this->session->set_flashdata('flash_message', get_phrase('payment_cancelled')); redirect(site_url('student/invoice/'), 'refresh'); } if ($param1 == 'paypal_success') { $this->session->set_flashdata('flash_message', get_phrase('payment_successfull')); redirect(site_url('student/invoice/'), 'refresh'); } $student_profile = $this->db->get_where('student', array( 'student_id' => $this->session->userdata('student_id') ))->row(); $student_id = $student_profile->student_id; $page_data['invoices'] = $this->db->get_where('invoice', array( 'student_id' => $student_id ))->result_array(); $page_data['page_name'] = 'invoice'; $page_data['page_title'] = get_phrase('manage_invoice/payment'); $this->load->view('backend/index', $page_data); } function paypal_checkout($student_id = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $invoice_id = $this->input->post('invoice_id'); $page_data['student_details'] = $this->db->get_where('student', array('student_id' => $student_id))->row(); $page_data['invoice_details'] = $this->db->get_where('invoice', array( 'invoice_id' => $invoice_id ))->row(); $this->load->view('backend/paypal_checkout', $page_data); } function stripe_checkout($student_id = ''){ if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $invoice_id = $this->input->post('invoice_id'); $page_data['student_details'] = $this->db->get_where('student', array('student_id' => $student_id))->row(); $page_data['invoice_details'] = $this->db->get_where('invoice', array( 'invoice_id' => $invoice_id ))->row(); $this->load->view('backend/stripe_checkout', $page_data); } function pay($gateway = '', $invoice_id = '') { if ($gateway == 'stripe') { $student_id = $this->input->post('student_id'); $payment_success = $this->stripe_model->pay($invoice_id); if ($payment_success == true) { $this->session->set_flashdata('flash_message', get_phrase('payment_successfull')); redirect(site_url('student/invoice/'.$student_id), 'refresh'); } else { $this->session->set_flashdata('error_message', get_phrase('payment_failed')); redirect(site_url('student/invoice/'.$student_id), 'refresh'); } } else if ($gateway == 'paypal') { $this->paypal_model->pay($invoice_id); $this->session->set_flashdata('flash_message', get_phrase('payment_successfull')); } } /**********MANAGE LIBRARY / BOOKS********************/ function book($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); if($param1 == 'request'){ $request=$this->Library_model->get_where("book_request" , array("book_id" => $param2, "user_id" => $param3 , user_type =>"student" )); if($request == NULL){ $data= array( "book_id" => $param2, "user_id" => $param3, "issue_start_date" => time(), "user_type" => "student", "status" => 0 ); $this->Library_model->insert("book_request",$data); $this->session->set_flashdata('flash_message', get_phrase('request_has_been_send_successfully')); redirect(site_url('student/book/'), 'refresh'); }else{ $this->session->set_flashdata('error_message', get_phrase('request_already_sended')); redirect(site_url('student/book/'), 'refresh'); } } if($param1 == 'request_cancel'){ $this->Library_model->delete("book_request" , array("book_request_id" => $param2 )); $this->session->set_flashdata('flash_message', get_phrase('book_request has been cancelled')); redirect(site_url('student/book/'), 'refresh'); } $user_type="student"; $student_id = $this->session->userdata('student_id'); $page_data["issued_books"]=$this->Library_model->get_issued_book($user_type,$student_id); $page_data['user_type']=$user_type; $page_data['user_id']= $student_id; $page_data["books"]=$this->Library_model->get_book_for_issue($user_type,$student_id); $page_data["fine_table"]= $this->Library_model->get_fine_details($user_type,$student_id); $page_data["book_requests"]= $this->Library_model->get_requested_book($user_type,$student_id); $page_data["library_settings"]=$this->Library_model->get_where("library_settings",array("user_type" => $user_type )); $name=$this->db->get_where($user_type,array($user_type."_id" => $student_id))->row()->name; $page_data['page_name'] = 'book'; $page_data['page_title'] =get_phrase('library_register-'.$name); $this->load->view('backend/index', $page_data); } /**********MANAGE TRANSPORT / VEHICLES / ROUTES********************/ function transport($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $page_data['transports'] = $this->db->get('transport')->result_array(); $page_data['page_name'] = 'transport'; $page_data['page_title'] = get_phrase('manage_transport'); $this->load->view('backend/index', $page_data); } /**********MANAGE DORMITORY / HOSTELS / ROOMS ********************/ function dormitory($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $page_data['dormitories'] = $this->db->get('dormitory')->result_array(); $page_data['page_name'] = 'dormitory'; $page_data['page_title'] = get_phrase('manage_dormitory'); $this->load->view('backend/index', $page_data); } /**********WATCH NOTICEBOARD AND EVENT ********************/ function noticeboard($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $page_data['notices'] = $this->db->get_where('noticeboard',array('status'=>1))->result_array(); $page_data['page_name'] = 'noticeboard'; $page_data['page_title'] = get_phrase('noticeboard'); $this->load->view('backend/index', $page_data); } /**********MANAGE DOCUMENT / home work FOR A SPECIFIC CLASS or ALL*******************/ function document($do = '', $document_id = '') { if ($this->session->userdata('student_login') != 1) redirect('login', 'refresh'); $page_data['page_name'] = 'manage_document'; $page_data['page_title'] = get_phrase('manage_documents'); $page_data['documents'] = $this->db->get('document')->result_array(); $this->load->view('backend/index', $page_data); } /* private messaging */ function message($param1 = 'message_home', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); $max_size = 2097152; if ($param1 == 'send_new') { // Folder creation if (!file_exists('uploads/private_messaging_attached_file/')) { $oldmask = umask(0); // helpful when used in linux server mkdir ('uploads/private_messaging_attached_file/', 0777); } if ($_FILES['attached_file_on_messaging']['name'] != "") { if($_FILES['attached_file_on_messaging']['size'] > $max_size){ $this->session->set_flashdata('error_message' , get_phrase('file_size_can_not_be_larger_that_2_Megabyte')); redirect(site_url('student/message/message_new/'), 'refresh'); } else{ $file_path = 'uploads/private_messaging_attached_file/'.$_FILES['attached_file_on_messaging']['name']; move_uploaded_file($_FILES['attached_file_on_messaging']['tmp_name'], $file_path); } } $message_thread_code = $this->crud_model->send_new_private_message(); $this->session->set_flashdata('flash_message', get_phrase('message_sent!')); redirect(site_url('student/message/message_read/' . $message_thread_code), 'refresh'); } if ($param1 == 'send_reply') { //making folder if (!file_exists('uploads/private_messaging_attached_file/')) { $oldmask = umask(0); // helpful when used in linux server mkdir ('uploads/private_messaging_attached_file/', 0777); } if ($_FILES['attached_file_on_messaging']['name'] != "") { if($_FILES['attached_file_on_messaging']['size'] > $max_size){ $this->session->set_flashdata('error_message' , get_phrase('file_size_can_not_be_larger_that_2_Megabyte')); redirect(site_url('student/message/message_read/' . $param2), 'refresh'); } else{ $file_path = 'uploads/private_messaging_attached_file/'.$_FILES['attached_file_on_messaging']['name']; move_uploaded_file($_FILES['attached_file_on_messaging']['tmp_name'], $file_path); } } $this->crud_model->send_reply_message($param2); //$param2 = message_thread_code $this->session->set_flashdata('flash_message', get_phrase('message_sent!')); redirect(site_url('student/message/message_read/' . $param2), 'refresh'); } if ($param1 == 'message_read') { $page_data['current_message_thread_code'] = $param2; // $param2 = message_thread_code $this->crud_model->mark_thread_messages_read($param2); } $page_data['message_inner_page_name'] = $param1; $page_data['page_name'] = 'message'; $page_data['page_title'] = get_phrase('private_messaging'); $this->load->view('backend/index', $page_data); } //GROUP MESSAGE function group_message($param1 = "group_message_home", $param2 = ""){ if ($this->session->userdata('student_login') != 1) redirect(base_url(), 'refresh'); $max_size = 2097152; if ($param1 == 'group_message_read') { $page_data['current_message_thread_code'] = $param2; } else if($param1 == 'send_reply'){ if (!file_exists('uploads/group_messaging_attached_file/')) { $oldmask = umask(0); // helpful when used in linux server mkdir ('uploads/group_messaging_attached_file/', 0777); } if ($_FILES['attached_file_on_messaging']['name'] != "") { if($_FILES['attached_file_on_messaging']['size'] > $max_size){ $this->session->set_flashdata('error_message' , get_phrase('file_size_can_not_be_larger_that_2_Megabyte')); redirect(site_url('student/group_message/group_message_read/' . $param2), 'refresh'); } else{ $file_path = 'uploads/group_messaging_attached_file/'.$_FILES['attached_file_on_messaging']['name']; move_uploaded_file($_FILES['attached_file_on_messaging']['tmp_name'], $file_path); } } $this->crud_model->send_reply_group_message($param2); //$param2 = message_thread_code $this->session->set_flashdata('flash_message', get_phrase('message_sent!')); redirect(site_url('student/group_message/group_message_read/' . $param2), 'refresh'); } $page_data['message_inner_page_name'] = $param1; $page_data['page_name'] = 'group_message'; $page_data['page_title'] = get_phrase('group_messaging'); $this->load->view('backend/index', $page_data); } /******MANAGE OWN PROFILE AND CHANGE PASSWORD***/ function manage_profile($param1 = '', $param2 = '', $param3 = '') { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); if ($param1 == 'update_profile_info') { $data['name'] = $this->input->post('name'); $data['email'] = $this->input->post('email'); if ($this->input->post('phone') != null) { $data['phone'] = $this->input->post('phone'); } if ($this->input->post('address') != null) { $data['address'] = $this->input->post('address'); } if ($this->input->post('birthday') != null) { $data['birthday'] = $this->input->post('birthday'); } if ($this->input->post('sex') != null) { $data['sex'] = $this->input->post('sex'); } $validation = email_validation_for_edit($data['email'], $this->session->userdata('student_id'), 'student'); if($validation == 1){ $this->db->where('student_id', $this->session->userdata('student_id')); $this->db->update('student', $data); move_uploaded_file($_FILES['userfile']['tmp_name'], 'uploads/student_image/' . $this->session->userdata('student_id') . '.jpg'); $this->session->set_flashdata('flash_message', get_phrase('account_updated')); } else{ $this->session->set_flashdata('error_message', get_phrase('this_email_id_is_not_available')); } redirect(site_url('student/manage_profile/'), 'refresh'); } if ($param1 == 'change_password') { $data['password'] = sha1($this->input->post('password')); $data['new_password'] = sha1($this->input->post('new_password')); $data['confirm_new_password'] = sha1($this->input->post('confirm_new_password')); $current_password = $this->db->get_where('student', array( 'student_id' => $this->session->userdata('student_id') ))->row()->password; if ($current_password == $data['password'] && $data['new_password'] == $data['confirm_new_password']) { $this->db->where('student_id', $this->session->userdata('student_id')); $this->db->update('student', array( 'password' => $data['new_password'] )); $this->session->set_flashdata('flash_message', get_phrase('password_updated')); } else { $this->session->set_flashdata('error_message', get_phrase('password_mismatch')); } redirect(site_url('student/manage_profile/'), 'refresh'); } $page_data['page_name'] = 'manage_profile'; $page_data['page_title'] = get_phrase('manage_profile'); $page_data['edit_data'] = $this->db->get_where('student', array( 'student_id' => $this->session->userdata('student_id') ))->result_array(); $this->load->view('backend/index', $page_data); } /*****************SHOW STUDY MATERIAL / for students of a specific class*******************/ function study_material($task = "", $document_id = "") { if ($this->session->userdata('student_login') != 1) { $this->session->set_userdata('last_page' , current_url()); redirect(base_url(), 'refresh'); } $data['study_material_info'] = $this->crud_model->select_study_material_info_for_student(); $data['page_name'] = 'study_material'; $data['page_title'] = get_phrase('study_material'); $this->load->view('backend/index', $data); } // MANAGE BOOK REQUESTS function pay_with_payumoney($param1 = "", $param2 = ""){ $page_data['page_name'] = 'pay_with_payumoney'; $page_data['page_title'] = get_phrase('pay_with_payumoney'); $page_data['student_id'] = $param1; $page_data['invoice_id'] = $param2; $this->load->view('backend/index', $page_data); } function manage_attendace(){ if ($this->session->userdata('student_login') != 1) { $this->session->set_userdata('last_page', current_url()); redirect(base_url(), 'refresh'); } $page_data['month'] = date('m'); $page_data['page_name'] = 'manage_attendace'; $page_data['page_title'] = get_phrase('manage_attendace'); $this->load->view('backend/index', $page_data); } function attendance_report_selector(){ $running_year = $this->db->get_where('settings' , array('type'=>'running_year'))->row()->description; $student_name = $this->db->get_where('student', array('student_id' => $this->session->userdata('login_user_id')))->row()->name; $checker = array( 'student_id' => $this->session->userdata('login_user_id'), 'year' => $running_year ); $month = $this->input->post('month'); $sessional_year = $this->input->post('sessional_year'); $class_id = $this->db->get_where('enroll', $checker)->row()->class_id; $section_id = $this->db->get_where('enroll', $checker)->row()->section_id; $class_name = $this->db->get_where('class', array('class_id' => $class_id))->row()->name; $section_name = $this->db->get_where('section', array('section_id' => $section_id))->row()->name; $page_data['class_id'] = $class_id; $page_data['section_id'] = $section_id; $page_data['month'] = $month; $page_data['sessional_year'] = $sessional_year; $page_data['student_id'] = $this->session->userdata('login_user_id'); $page_data['page_name'] = 'attendance_report_view'; $page_data['page_title'] = get_phrase('attendance_report_of') . ' ' . $student_name; $this->load->view('backend/index', $page_data); } function attendance_report_print_view($class_id ='' , $section_id = '' , $month = '', $sessional_year = '', $student_id = '') { if ($this->session->userdata('student_login') != 1) { $this->session->set_userdata('last_page', current_url()); redirect(base_url(), 'refresh'); } $page_data['class_id'] = $class_id; $page_data['section_id'] = $section_id; $page_data['month'] = $month; $page_data['sessional_year'] = $sessional_year; $page_data['student_id'] = $student_id; $this->load->view('backend/student/attendance_report_print_view' , $page_data); } function get_teachers() { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); $columns = array( 0 => 'teacher_id', 1 => 'photo', 2 => 'name', 3 => 'email', 4 => 'phone', 5 => 'teacher_id' ); $limit = $this->input->post('length'); $start = $this->input->post('start'); $order = $columns[$this->input->post('order')[0]['column']]; $dir = $this->input->post('order')[0]['dir']; $totalData = $this->ajaxload->all_teachers_count(); $totalFiltered = $totalData; if(empty($this->input->post('search')['value'])) { $teachers = $this->ajaxload->all_teachers($limit,$start,$order,$dir); } else { $search = $this->input->post('search')['value']; $teachers = $this->ajaxload->teacher_search($limit,$start,$search,$order,$dir); $totalFiltered = $this->ajaxload->teacher_search_count($search); } $data = array(); if(!empty($teachers)) { foreach ($teachers as $row) { $photo = '<img src="'.$this->crud_model->get_image_url('teacher', $row->teacher_id).'" class="img-circle" width="30" />'; $nestedData['teacher_id'] = $row->teacher_id; $nestedData['photo'] = $photo; $nestedData['name'] = $row->name; $nestedData['email'] = $row->email; $nestedData['phone'] = $row->phone; $data[] = $nestedData; } } $json_data = array( "draw" => intval($this->input->post('draw')), "recordsTotal" => intval($totalData), "recordsFiltered" => intval($totalFiltered), "data" => $data ); echo json_encode($json_data); } function get_books() { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); $columns = array( 0 => 'book_id', 1 => 'name', 2 => 'author', 3 => 'description', 4 => 'price', 5 => 'class', 6 => 'download', 7 => 'book_id' ); $limit = $this->input->post('length'); $start = $this->input->post('start'); $order = $columns[$this->input->post('order')[0]['column']]; $dir = $this->input->post('order')[0]['dir']; $totalData = $this->ajaxload->all_books_count(); $totalFiltered = $totalData; if(empty($this->input->post('search')['value'])) { $books = $this->ajaxload->all_books($limit,$start,$order,$dir); } else { $search = $this->input->post('search')['value']; $books = $this->ajaxload->book_search($limit,$start,$search,$order,$dir); $totalFiltered = $this->ajaxload->book_search_count($search); } $data = array(); if(!empty($books)) { foreach ($books as $row) { if ($row->file_name == null) $download = ''; else $download = '<a href="'.site_url("uploads/document/$row->file_name").'" class="btn btn-blue btn-icon icon-left"><i class="entypo-download"></i>'.get_phrase('download').'</a>'; $nestedData['book_id'] = $row->book_id; $nestedData['name'] = $row->name; $nestedData['author'] = $row->author; $nestedData['description'] = $row->description; $nestedData['price'] = $row->price; $nestedData['class'] = $this->db->get_where('class', array('class_id' => $row->class_id))->row()->name; $nestedData['download'] = $download; $data[] = $nestedData; } } $json_data = array( "draw" => intval($this->input->post('draw')), "recordsTotal" => intval($totalData), "recordsFiltered" => intval($totalFiltered), "data" => $data ); echo json_encode($json_data); } function online_exam($param1 = '', $param2 = '') { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); if ($param1 == '') { $page_data['data'] = 'active'; $page_data['exams'] = $this->crud_model->available_exams($this->session->userdata('login_user_id')); } $page_data['page_name'] = 'online_exam'; $page_data['page_title'] = get_phrase('online_exams'); $this->load->view('backend/index', $page_data); } function online_exam_result($param1 = '', $param2 = '') { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); if ($param1 == '') { $page_data['data'] = 'result'; $page_data['exams'] = $this->crud_model->available_exams($this->session->userdata('login_user_id')); } $page_data['page_name'] = 'online_exam_result'; $page_data['page_title'] = get_phrase('online_exam_results'); $this->load->view('backend/index', $page_data); } function take_online_exam($online_exam_code) { if ($this->session->userdata('student_login') != 1) redirect(site_url('login'), 'refresh'); $online_exam_id = $this->db->get_where('online_exam', array('code' => $online_exam_code))->row()->online_exam_id; $student_id = $this->session->userdata('login_user_id'); // check if the student has already taken the exam $check = array('student_id' => $student_id, 'online_exam_id' => $online_exam_id); $taken = $this->db->where($check)->get('online_exam_result')->num_rows(); $this->crud_model->change_online_exam_status_to_attended_for_student($online_exam_id); $status = $this->crud_model->check_availability_for_student($online_exam_id); if ($status == 'submitted') { $page_data['page_name'] = 'page_not_found'; } else{ $page_data['page_name'] = 'online_exam_take'; } $page_data['page_title'] = get_phrase('online_exam'); $page_data['online_exam_id'] = $online_exam_id; $page_data['exam_info'] = $this->db->get_where('online_exam', array('online_exam_id' => $online_exam_id)); $this->load->view('backend/index', $page_data); } function submit_online_exam($online_exam_id = ""){ $answer_script = array(); $question_bank = $this->db->get_where('question_bank', array('online_exam_id' => $online_exam_id))->result_array(); foreach ($question_bank as $question) { $correct_answers = $this->crud_model->get_correct_answer($question['question_bank_id']); $container_2 = array(); if (isset($_POST[$question['question_bank_id']])) { foreach ($this->input->post($question['question_bank_id']) as $row) { $submitted_answer = ""; if ($question['type'] == 'true_false') { $submitted_answer = $row; } elseif($question['type'] == 'fill_in_the_blanks'){ $suitable_words = array(); $suitable_words_array = explode(',', $row); foreach ($suitable_words_array as $key) { array_push($suitable_words, strtolower($key)); } $submitted_answer = json_encode(array_map('trim',$suitable_words)); } else{ array_push($container_2, strtolower($row)); $submitted_answer = json_encode($container_2); } $container = array( "question_bank_id" => $question['question_bank_id'], "submitted_answer" => $submitted_answer, "correct_answers" => $correct_answers ); } } else { $container = array( "question_bank_id" => $question['question_bank_id'], "submitted_answer" => "", "correct_answers" => $correct_answers ); } array_push($answer_script, $container); } $this->crud_model->submit_online_exam($online_exam_id, json_encode($answer_script)); redirect(site_url('student/online_exam'), 'refresh'); } }