Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
_
/
smart_school_src
/
application
/
controllers
/
admin
✏️
Editing: Complainttype.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Complainttype extends Admin_Controller { function __construct() { parent::__construct(); $this->load->library('form_validation'); $this->load->model("ComplaintType_model"); } function index() { if (!$this->rbac->hasPrivilege('setup_font_office', 'can_view')) { access_denied(); } $this->form_validation->set_rules('complaint_type', $this->lang->line('complaint_type'), 'required'); if ($this->form_validation->run() == FALSE) { $data['complaint_type_list'] = $this->ComplaintType_model->get('complaint_type'); $this->load->view('layout/header'); $this->load->view('admin/frontoffice/complainttypeview', $data); $this->load->view('layout/footer'); } else { $complaint_type = array( 'complaint_type' => $this->input->post('complaint_type'), 'description' => $this->input->post('description') ); $this->ComplaintType_model->add('complaint_type', $complaint_type); $this->session->set_flashdata('msg', '<div class="alert alert-success">' . $this->lang->line('success_message') . '</div>'); redirect('admin/complainttype'); } } function editcomplainttype($complainttype_id) { if (!$this->rbac->hasPrivilege('setup_font_office', 'can_edit')) { access_denied(); } $this->form_validation->set_rules('complaint_type', $this->lang->line('complaint_type'), 'required'); if ($this->form_validation->run() == FALSE) { $data['complaint_type_list'] = $this->ComplaintType_model->get('complaint_type'); $data['complaint_type_data'] = $this->ComplaintType_model->get('complaint_type', $complainttype_id); $this->load->view('layout/header'); $this->load->view('admin/frontoffice/complainttypeeditview', $data); $this->load->view('layout/footer'); } else { $complaint_type = array( 'complaint_type' => $this->input->post('complaint_type'), 'description' => $this->input->post('description') ); $this->ComplaintType_model->update('complaint_type', $complainttype_id, $complaint_type); $this->session->set_flashdata('msg', '<div class="alert alert-success"> ' . $this->lang->line('update_message') . '</div>'); redirect('admin/complainttype'); } } function delete($id) { if (!$this->rbac->hasPrivilege('setup_font_office', 'can_delete')) { access_denied(); } $this->ComplaintType_model->delete('complaint_type', $id); $this->session->set_flashdata('msg', '<div class="alert alert-success">' . $this->lang->line('delete_message') . '</div>'); redirect('admin/complainttype'); } }
💾 Save Changes
❌ Cancel