ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/controllers/admin/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/controllers/admin/Content.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Content extends Admin_Controller { function __construct() { parent::__construct(); } function index() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'admin/content'); $user_role = $this->customlib->getStaffRole(); $data['title'] = 'Upload Content'; $data['title_list'] = 'Upload Content List'; $data['content_available'] = $this->customlib->contentAvailabelFor(); $ght = $this->customlib->getcontenttype(); $role = json_decode($user_role); $list = $this->content_model->getContentByRole($this->customlib->getStaffID(), $role->name); $class = $this->class_model->get(); $data['list'] = $list; $data['classlist'] = $class; $userdata = $this->customlib->getUserData(); $carray = array(); $data['ght'] = $ght; $this->form_validation->set_rules('content_title', $this->lang->line('content_title'), 'trim|required|xss_clean'); $this->form_validation->set_rules('content_type', $this->lang->line('content_type'), 'trim|required|xss_clean'); $this->form_validation->set_rules('content_available[]', $this->lang->line('available_for'), 'trim|required|xss_clean'); $this->form_validation->set_rules('upload_date', $this->lang->line('date'), 'trim|required|xss_clean'); $post_data = $this->input->post(); if (isset($post_data['content_available']) AND ! isset($post_data['visibility']) AND ( in_array("student", $post_data['content_available']))) { $this->form_validation->set_rules('class_id', $this->lang->line('class'), 'trim|required|xss_clean'); $this->form_validation->set_rules('section_id', $this->lang->line('section'), 'trim|required|xss_clean'); } $this->form_validation->set_rules('file', $this->lang->line('image'), 'callback_handle_upload'); if ($this->form_validation->run() == FALSE) { $this->load->view('layout/header'); $this->load->view('admin/content/createcontent', $data); $this->load->view('layout/footer'); } else { $vs = $this->input->post('visibility'); $content_available = $this->input->post('content_available'); $visibility = "No"; $classes = ""; $section_id = ""; if (in_array('student', $content_available) && isset($vs)) { $visibility = $this->input->post('visibility'); } elseif (in_array('student', $content_available) && !isset($vs)) { $section_id = $this->input->post('section_id'); $classes = $this->input->post('class_id'); } else { } $content_for = array(); foreach ($content_available as $cont_avail_key => $cont_avail_value) { $content_for[] = array('role' => $cont_avail_value); } $data = array( 'title' => $this->input->post('content_title'), 'type' => $this->input->post('content_type'), 'note' => $this->input->post('note'), 'class_id' => $classes, 'cls_sec_id' => $section_id, 'created_by'=> $this->customlib->getStaffID(), //'date' => date('Y-m-d', $this->customlib->datetostrtotime($this->input->post('upload_date'))), 'file' => $this->input->post('file'), 'is_public' => $visibility ); if(isset($_POST['upload_date']) && $_POST['upload_date']!=''){ $data['date']=date('Y-m-d', $this->customlib->datetostrtotime($this->input->post('upload_date'))); } $insert_id = $this->content_model->add($data, $content_for); if (isset($_FILES["file"]) && !empty($_FILES['file']['name'])) { $fileInfo = pathinfo($_FILES["file"]["name"]); $img_name = $insert_id . '.' . $fileInfo['extension']; move_uploaded_file($_FILES["file"]["tmp_name"], "./uploads/school_content/material/" . $img_name); $data_img = array('id' => $insert_id, 'file' => 'uploads/school_content/material/' . $img_name); $this->content_model->add($data_img); } $this->session->set_flashdata('msg', '<div class="alert alert-success text-left">'.$this->lang->line('success_message').'</div>'); redirect('admin/content'); } } function index1() { $this->customlib->getStaffRole(); $data['title'] = 'Upload Content'; $data['title_list'] = 'Upload Content List'; $data['content_available'] = $this->customlib->contentAvailabelFor(); $ght = $this->customlib->getcontenttype(); $list = $this->content_model->get(); $class = $this->class_model->get(); $data['list'] = $list; $data['classlist'] = $class; $data['ght'] = $ght; $this->form_validation->set_rules('content_title', 'Content Title', 'trim|required|xss_clean'); $this->form_validation->set_rules('content_type', 'Content Type', 'trim|required|xss_clean'); $this->form_validation->set_rules('content_available[]', 'Available for', 'trim|required|xss_clean'); $post_data = $this->input->post(); if (isset($post_data['content_available']) AND ! isset($post_data['visibility']) AND ( in_array("student", $post_data['content_available']))) { $this->form_validation->set_rules('class_id', 'Class', 'trim|required|xss_clean'); $this->form_validation->set_rules('section_id', 'Section', 'trim|required|xss_clean'); } $this->form_validation->set_rules('file', 'Image', 'callback_handle_upload'); if ($this->form_validation->run() == FALSE) { $this->load->view('layout/header'); $this->load->view('admin/content/createcontent', $data); $this->load->view('layout/footer'); } else { $vs = $this->input->post('visibility'); $content_available = $this->input->post('content_available'); $visibility = "No"; $classes = ""; $section_id = ""; if (in_array('student', $content_available) && isset($vs)) { $visibility = $this->input->post('visibility'); } elseif (in_array('student', $content_available) && !isset($vs)) { $section_id = $this->input->post('section_id'); $classes = $this->input->post('class_id'); } else { } $content_for = array(); foreach ($content_available as $cont_avail_key => $cont_avail_value) { $content_for[] = array('role' => $cont_avail_value); } $data = array( 'title' => $this->input->post('content_title'), 'type' => $this->input->post('content_type'), 'note' => $this->input->post('note'), 'class_id' => $classes, 'cls_sec_id' => $section_id, 'date' => date('Y-m-d', $this->customlib->datetostrtotime($this->input->post('upload_date'))), 'file' => $this->input->post('file'), 'is_public' => $visibility ); $insert_id = $this->content_model->add($data, $content_for); if (isset($_FILES["file"]) && !empty($_FILES['file']['name'])) { $fileInfo = pathinfo($_FILES["file"]["name"]); $img_name = $insert_id . '.' . $fileInfo['extension']; move_uploaded_file($_FILES["file"]["tmp_name"], "./uploads/school_content/material/" . $img_name); $data_img = array('id' => $insert_id, 'file' => 'uploads/school_content/material/' . $img_name); $this->content_model->add($data_img); } $this->session->set_flashdata('msg', '<div class="alert alert-success text-left">Content added successfully</div>'); redirect('admin/content'); } } function handle_upload() { if (isset($_FILES["file"]) && !empty($_FILES['file']['name'])) { $allowedExts = array('jpg', 'jpeg', 'png', "pdf", "doc", "docx", "rar", "zip"); $temp = explode(".", $_FILES["file"]["name"]); $extension = end($temp); if ($_FILES["file"]["error"] > 0) { $error .= "Error opening the file<br />"; } if (($_FILES["file"]["type"] != "application/pdf") && ($_FILES["file"]["type"] != "image/gif") && ($_FILES["file"]["type"] != "image/jpeg") && ($_FILES["file"]["type"] != "image/jpg") && ($_FILES["file"]["type"] != "application/vnd.openxmlformats-officedocument.wordprocessingml.document") && ($_FILES["file"]["type"] != "application/vnd.openxmlformats-officedocument.wordprocessingml.document") && ($_FILES["file"]["type"] != "image/pjpeg") && ($_FILES["file"]["type"] != "image/x-png") && ($_FILES["file"]["type"] != "application/x-rar-compressed") && ($_FILES["file"]["type"] != "application/octet-stream") && ($_FILES["file"]["type"] != "application/zip") && ($_FILES["file"]["type"] != "application/octet-stream") && ($_FILES["file"]["type"] != "image/png")) { $this->form_validation->set_message('handle_upload', $this->lang->line('file_type_not_allowed')); return false; } if (!in_array($extension, $allowedExts)) { $this->form_validation->set_message('handle_upload', $this->lang->line('extension_not_allowed')); return false; } return true; } else { $this->form_validation->set_message('handle_upload', $this->lang->line('the_file_field_is_required')); return false; } } public function download($file) { $this->load->helper('download'); $filepath = "./uploads/school_content/material/" . $this->uri->segment(7); $data = file_get_contents($filepath); $name = $this->uri->segment(7); force_download($name, $data); } public function answer_download($file) { $this->load->helper('download'); $filepath = "./uploads/student_answer/" . $this->uri->segment(6); $data = file_get_contents($filepath); $name = $this->uri->segment(6); force_download($name, $data); } function edit($id) { if (!$this->rbac->hasPrivilege('upload_content', 'can_edit')) { access_denied(); } $data['title'] = 'Add Content'; $data['id'] = $id; $editpost = $this->content_model->get($id); $data['editpost'] = $editpost; $ght = $this->customlib->getcontenttype(); $data['ght'] = $ght; $class = $this->class_model->get(); $data['classlist'] = $class; $this->form_validation->set_rules('content_title', $this->lang->line('content_title'), 'trim|required|xss_clean'); if ($this->form_validation->run() == FALSE) { $listpost = $this->content_model->get(); $data['listpost'] = $listpost; $this->load->view('layout/header'); $this->load->view('admin/content/editpost', $data); $this->load->view('layout/footer'); } else { $data = array( 'id' => $this->input->post('id'), 'content_title' => $this->input->post('content_title'), 'content_type' => $this->input->post('content_type'), 'class_id' => $this->input->post('class_id'), 'date' => date('Y-m-d', $this->customlib->datetostrtotime($this->input->post('upload_date'))), 'file_uploaded' => $this->input->file['file']['name'] ); $this->content_model->addcontentpost($data); if (isset($_FILES["file"]) && !empty($_FILES['file']['name'])) { $fileInfo = pathinfo($_FILES["file"]["name"]); $img_name = $id . '.' . $fileInfo['extension']; move_uploaded_file($_FILES["file"]["tmp_name"], "./uploads/student_images/" . $img_name); $data_img = array('id' => $id, 'file_uploaded' => 'uploads/student_images/' . $img_name); $this->content_model->addcontentpost($data_img); } $this->session->set_flashdata('msg', '<div class="alert alert-success text-center">'.$this->lang->line('success_message').'</div>'); redirect('admin/content/createcontent/index'); } } function search() { $text = $_GET['content']; $data['title'] = 'Fees Master List'; $contentlist = $this->content_model->search_by_content_type($text); $data['contentlist'] = $contentlist; $this->load->view('layout/header'); $this->load->view('admin/content/search', $data); $this->load->view('layout/footer'); } function view($content_id) { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/questionpaper'); $data['title'] = 'Exam Answers List'; $list = $this->content_model->getAnswerByContentId("$content_id"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/view_answer', $data); $this->load->view('layout/footer'); } function delete($id) { if (!$this->rbac->hasPrivilege('upload_content', 'can_delete')) { access_denied(); } $data = $this->content_model->get($id); $file = $data['file']; unlink($file); /*$data = $this->content_model->getAnswerByContentId($id); $file = $data['docs']; unlink($file); $this->content_model->remove_answer($id);*/ $this->content_model->remove($id); redirect('admin/content'); } function delete_answer($id,$cnt_id) { if (!$this->rbac->hasPrivilege('upload_content', 'can_delete')) { access_denied(); } $data = $this->content_model->getAnswerById($id); $file = $data['docs']; unlink($file); //echo $file; $this->content_model->remove_answer_by_id($id); redirect('admin/content/view/'.$cnt_id); } function delete_question_paper($id) { if (!$this->rbac->hasPrivilege('upload_content', 'can_delete')) { access_denied(); } $data = $this->content_model->get($id); $file = $data['file']; unlink($file); $data1 = $this->content_model->getAnswerByContentId($id); $file = $data1['docs']; unlink($file); $this->content_model->remove_answer($id); $this->content_model->remove($id); redirect('admin/content/questionpaper'); } function deleteassignment($id,$page) { if (!$this->rbac->hasPrivilege('upload_content', 'can_delete')) { access_denied(); } $this->content_model->remove($id); // $this->$page(); redirect('admin/content/'.$page); // $data['title_list'] = 'Assignment List'; // $list = $this->content_model->getListByCategory("Assignments"); // $data['list'] = $list; // $this->load->view('layout/header'); // $this->load->view('admin/content/assignment', $data); // $this->load->view('layout/footer'); } public function assignment() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/assignment'); $data['title_list'] = 'Assignment List'; $list = $this->content_model->getListByCategory("assignments"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/assignment', $data); $this->load->view('layout/footer'); } public function studymaterial() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/studymaterial'); $data['title_list'] = 'Study Material List'; $list = $this->content_model->getListByCategory("study_material"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/studymaterial', $data); $this->load->view('layout/footer'); } public function syllabus() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/syllabus'); $data['title_list'] = 'Syllabus List'; $list = $this->content_model->getListByCategory("syllabus"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/syllabus', $data); $this->load->view('layout/footer'); } public function questionbank() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/questionbank'); $data['title_list'] = 'Question Bank List'; $list = $this->content_model->getListByCategory("question_bank"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/questionbank', $data); $this->load->view('layout/footer'); } public function questionpaper() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/questionpaper'); $data['title_list'] = 'Question Bank List'; $list = $this->content_model->getListByCategory("question_paper"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/questionpaper', $data); $this->load->view('layout/footer'); } public function other() { $this->session->set_userdata('top_menu', 'Download Center'); $this->session->set_userdata('sub_menu', 'content/other'); $data['title_list'] = 'Other Download List'; $list = $this->content_model->getListByCategory("other_download"); $data['list'] = $list; $this->load->view('layout/header'); $this->load->view('admin/content/other', $data); $this->load->view('layout/footer'); } } ?>