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', '
' . $this->lang->line('success_message') . '
');
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', '
' . $this->lang->line('update_message') . '
');
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', '' . $this->lang->line('delete_message') . '
');
redirect('admin/complainttype');
}
}