|
Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/laciasmara.com/public_html/shop/application/controllers/admin/ |
Upload File : |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Toc extends Admin_Controller
{
function __construct()
{
parent::__construct();
}
//this is to list all categories
public function index()
{
//get Terms & Conditions
$this->db->select('toc')->from('toc')->where('id_toc', 1);
$this->data['toc'] = $this->db->get()->row()->toc;
//get Indent Terms & Conditions
$this->db->select('toc')->from('toc')->where('id_toc', 3);
$this->data['toc_indent'] = $this->db->get()->row()->toc;
//get Privacy Policy
$this->db->select('toc')->from('toc')->where('id_toc', 2);
$this->data['privacy'] = $this->db->get()->row()->toc;
//load view
$this->data['subview'] = 'admin/toc/index';
$this->load->view('admin/templates/header', $this->data_header);
$this->load->view('admin/_layout_main', $this->data);
$this->load->view('admin/templates/footer');
}
//to edit toc in admin
public function edit_toc()
{
//validation check in action
$config = array(
array(
'field' => 'toc',
'label' => 'toc',
'rules' => 'required'
),
);
$this->form_validation->set_rules($config);
$this->form_validation->set_error_delimiters('<div class="error">', '</div>');
if ($this->form_validation->run() == TRUE) {
if ($_POST) {
$data = array(
'toc' => $this->input->post('toc'),
);
$this->db->where('id_toc', 1);
$this->db->update('toc', $data);
$user_id = $this->session->userdata('admin')['id'];
$activity = 'User mengedit Terms & Conditions ';
log_activity($user_id, $activity);
$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Terms & Conditions Edit Successfully</p>');
redirect('admin/toc');
}
}
$this->index();
}
//to edit indent toc in admin
public function edit_toc_indent()
{
//validation check in action
$config = array(
array(
'field' => 'toc_indent',
'label' => 'toc indent',
'rules' => 'required'
),
);
$this->form_validation->set_rules($config);
$this->form_validation->set_error_delimiters('<div class="error">', '</div>');
if ($this->form_validation->run() == TRUE) {
if ($_POST) {
$data = array(
'toc' => $this->input->post('toc_indent'),
);
$this->db->where('id_toc', 3);
$this->db->update('toc', $data);
$user_id = $this->session->userdata('admin')['id'];
$activity = 'User mengedit Indent Terms & Conditions ';
log_activity($user_id, $activity);
$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Indent Terms & Conditions Edit Successfully</p>');
redirect('admin/toc');
}
}
$this->index();
}
//to edit toc in admin
public function edit_privacy()
{
//validation check in action
$config = array(
array(
'field' => 'privacy',
'label' => 'privacy',
'rules' => 'required'
),
);
$this->form_validation->set_rules($config);
$this->form_validation->set_error_delimiters('<div class="error">', '</div>');
if ($this->form_validation->run() == TRUE) {
if ($_POST) {
$data = array(
'toc' => $this->input->post('privacy'),
);
$this->db->where('id_toc', 2);
$this->db->update('toc', $data);
$user_id = $this->session->userdata('admin')['id'];
$activity = 'User mengedit Kebijakan Privacy ';
log_activity($user_id, $activity);
$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Privacy Edit Successfully</p>');
redirect('admin/toc');
}
}
$this->index();
}
}