2023-01-05 12:19:39 +00:00
|
|
|
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class Subject extends CI_Controller {
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->model('Subject_model');
|
|
|
|
$this->load->model('Commonsql_model');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Index Page for this controller.
|
|
|
|
*
|
|
|
|
* Maps to the following URL
|
|
|
|
* http://example.com/index.php/welcome
|
|
|
|
* - or -
|
|
|
|
* http://example.com/index.php/welcome/index
|
|
|
|
* - or -
|
|
|
|
* Since this controller is set as the default controller in
|
|
|
|
* config/routes.php, it's displayed at http://example.com/
|
|
|
|
*
|
|
|
|
* So any other public methods not prefixed with an underscore will
|
|
|
|
* map to /index.php/welcome/<method_name>
|
|
|
|
* @see https://codeigniter.com/user_guide/general/urls.html
|
|
|
|
*/
|
|
|
|
public function subject_list()
|
|
|
|
{
|
2023-01-21 13:41:47 +00:00
|
|
|
$data['subject']=$this->Subject_model->list_subject();
|
|
|
|
$this->load->view('subject/subject_list',$data);
|
2023-01-05 12:19:39 +00:00
|
|
|
}
|
|
|
|
|
2023-01-21 13:41:47 +00:00
|
|
|
public function viewSubject($id)
|
2023-01-05 12:19:39 +00:00
|
|
|
{
|
2023-01-21 13:41:47 +00:00
|
|
|
if($this->session->userdata('id')==""){redirect('');}
|
|
|
|
|
|
|
|
$data['viewSubject']=$this->Subject_model->viewSubject($id);
|
|
|
|
//echo $this->db->last_query();exit;
|
|
|
|
$this->load->view('subject/view_subject',$data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_subject()
|
|
|
|
{
|
|
|
|
$data['degree']=$this->Subject_model->degreeList();
|
|
|
|
$data['faculty']=$this->Subject_model->facultyList();
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
if($this->input->post('submit'))
|
|
|
|
{
|
2023-01-21 13:41:47 +00:00
|
|
|
$code=$this->input->post('subjectCode');
|
|
|
|
$subject=$this->input->post('subject');
|
|
|
|
$degree=$this->input->post('degree');
|
|
|
|
//$target['tar'] = $this->input->post('tar');
|
|
|
|
$faculty=$this->input->post('faculty');
|
|
|
|
$description=$this->input->post('description');
|
|
|
|
|
|
|
|
$faculties = implode(",", (array)$faculty);
|
|
|
|
//echo $faculties;exit;
|
|
|
|
if (!is_dir('uploads/subject')) {
|
|
|
|
mkdir('./uploads/subject', 0777, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(file_exists($_FILES['profileImage']['tmp_name']))
|
|
|
|
{
|
|
|
|
$temp_user_img=$_FILES['profileImage']['tmp_name'];
|
|
|
|
$user_img=str_replace(' ', '_', $_FILES["profileImage"]["name"]);
|
|
|
|
$allowed = array('png,jpeg,jpg');
|
|
|
|
$extension1 = pathinfo($user_img, PATHINFO_EXTENSION);
|
|
|
|
$user_img=date('ymdhis').'.'.$extension1;
|
|
|
|
$targetPath='./uploads/subject/';
|
|
|
|
$targetFile=$targetPath.$user_img;
|
|
|
|
move_uploaded_file($temp_user_img, $targetFile);
|
|
|
|
}
|
|
|
|
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
$table="subject";
|
|
|
|
$values=array('code'=>$code,
|
2023-01-21 13:41:47 +00:00
|
|
|
'name'=>$subject,
|
|
|
|
'degreeId'=>$degree,
|
|
|
|
'facultyId'=>$faculties,
|
|
|
|
'image'=>$user_img,
|
|
|
|
'description'=>$description,
|
2023-01-08 20:46:58 +00:00
|
|
|
'createdOn'=>date('Y-m-d'),
|
|
|
|
'createdBy'=>1,
|
2023-01-05 12:19:39 +00:00
|
|
|
'status'=>1);
|
|
|
|
$result=$this->Commonsql_model->insert_table($table,$values);
|
|
|
|
if($result)
|
|
|
|
{
|
|
|
|
$this->session->set_userdata('suc','successfully added');
|
|
|
|
redirect('subject');
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->session->set_userdata('err','Please try again');
|
|
|
|
redirect('subject');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-01-21 13:41:47 +00:00
|
|
|
$this->load->view('subject/add_subject',$data);
|
2023-01-05 12:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-01-21 13:41:47 +00:00
|
|
|
function editSubject($id)
|
2023-01-05 12:19:39 +00:00
|
|
|
{
|
|
|
|
$data['sub']=$this->Subject_model->get_sub($id);
|
2023-01-21 13:41:47 +00:00
|
|
|
$data['degree']=$this->Subject_model->degreeList();
|
|
|
|
$data['faculty']=$this->Subject_model->facultyList();
|
2023-01-05 12:19:39 +00:00
|
|
|
|
2023-01-21 13:41:47 +00:00
|
|
|
|
2023-01-05 12:19:39 +00:00
|
|
|
if($this->input->post('submit'))
|
|
|
|
{
|
|
|
|
|
|
|
|
$code=$this->input->post('code');
|
|
|
|
$sub=$this->input->post('subject');
|
2023-01-21 13:41:47 +00:00
|
|
|
$degreeId=$this->input->post('degree');
|
2023-01-05 12:19:39 +00:00
|
|
|
$semester=$this->input->post('semester');
|
2023-01-21 13:41:47 +00:00
|
|
|
$faculty=$this->input->post('faculty');
|
|
|
|
$description=$this->input->post('description');
|
|
|
|
$image=$this->input->post('image');
|
|
|
|
$hiddenImage=$this->input->post('hiddenImage');
|
|
|
|
|
|
|
|
//print_r ($faculty);
|
|
|
|
$faculties = implode(",", (array)$faculty);
|
|
|
|
//echo $faculties;exit;
|
|
|
|
|
|
|
|
if($image==""){$newImage=$hiddenImage;}
|
|
|
|
|
|
|
|
|
|
|
|
if(file_exists($_FILES['image']['tmp_name']))
|
|
|
|
{
|
|
|
|
$temp_user_img=$_FILES['image']['tmp_name'];
|
|
|
|
$newImage=str_replace(' ', '_', $_FILES["image"]["name"]);
|
|
|
|
$allowed = array('png,jpeg,jpg');
|
|
|
|
$extension1 = pathinfo($newImage, PATHINFO_EXTENSION);
|
|
|
|
$newImage=date('ymdhis').'.'.$extension1;
|
|
|
|
$targetPath='./uploads/subject/';
|
|
|
|
$targetFile=$targetPath.$newImage;
|
|
|
|
move_uploaded_file($temp_user_img, $targetFile);
|
|
|
|
}
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
$table="subject";
|
|
|
|
$where=array("id"=>$id);
|
|
|
|
$values=array('code'=>$code,
|
2023-01-21 13:41:47 +00:00
|
|
|
'name'=>$sub,
|
|
|
|
'degreeId'=>$degreeId,
|
|
|
|
'facultyId'=>$faculties,
|
|
|
|
'description'=>$description,
|
|
|
|
'image'=>$newImage,
|
2023-01-08 20:46:58 +00:00
|
|
|
'updatedOn'=>date('Y-m-d'),
|
2023-01-21 13:41:47 +00:00
|
|
|
'updatedBy'=>1);
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
$result=$this->Commonsql_model->updateTable($table,$where,$values);
|
|
|
|
//echo $this->db->last_query();exit;
|
|
|
|
if($result)
|
|
|
|
|
2023-01-21 13:41:47 +00:00
|
|
|
{
|
|
|
|
$this->session->set_userdata('suc','successfully Updated');
|
|
|
|
redirect('subject');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->session->set_userdata('err','Please try again');
|
|
|
|
redirect('subject');
|
|
|
|
}
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
}
|
2023-01-21 13:41:47 +00:00
|
|
|
|
|
|
|
$this->load->view('subject/edit_subject',$data);
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-01-21 13:41:47 +00:00
|
|
|
function deleteSubject()
|
2023-01-05 12:19:39 +00:00
|
|
|
{
|
|
|
|
if($this->input->post('submit'))
|
|
|
|
{
|
2023-01-21 13:41:47 +00:00
|
|
|
$subjectId=$this->input->post('subjectId');
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
$table="subject";
|
2023-01-21 13:41:47 +00:00
|
|
|
$where=array("id"=>$subjectId);
|
|
|
|
$values=array('status'=>0);
|
2023-01-05 12:19:39 +00:00
|
|
|
|
|
|
|
$result=$this->Commonsql_model->updateTable($table,$where,$values);
|
|
|
|
if($result)
|
2023-01-21 13:41:47 +00:00
|
|
|
{
|
|
|
|
$this->session->set_userdata('suc','successfully deleted');
|
|
|
|
redirect('subject');
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->session->set_userdata('err','Please try again');
|
|
|
|
redirect('subject');
|
|
|
|
}
|
2023-01-05 12:19:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|