https://t.me/RX1948
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/indolok.id/application/controllers/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/indolok.id/application/controllers/admin/Toc.php
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Toc extends Admin_Controller {
		
	function __construct() {
		parent::__construct();	

		if (!in_array('toc', $this->data['allowed_module'])) {
			$this->data['allowed'] = false;
		} else {
			$this->data['allowed'] = true;
		}
	}
		
	//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 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);	

			$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 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);	

			$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();
	}


}

https://t.me/RX1948 - 2025