ok

Mini Shell

Direktori : /home2/selectio/public_html/srivarielevators.net/application/controllers/
Upload File :
Current File : /home2/selectio/public_html/srivarielevators.net/application/controllers/Category.php

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Category extends CI_Controller {

	function __construct() 
	{
        parent::__construct();
        $this->load->model('Model_common');
        $this->load->model('Model_category');
    }

	public function view($id)
	{
		// If there is no id after category in URL, redirect to the home page
		if(!$id)
		{
			redirect(base_url());
            exit;
		}

		$header['setting'] = $this->Model_common->get_setting_data();
		$header['page'] = $this->Model_common->get_page_data();
		$header['comment'] = $this->Model_common->get_comment_code();
		$header['social'] = $this->Model_common->get_social_data();
		$header['language'] = $this->Model_common->get_language_data();
		$header['latest_news'] = $this->Model_common->get_latest_news();
		$header['popular_news'] = $this->Model_common->get_popular_news();

		$data['category'] = $this->Model_category->get_category_data($id);
		$data['news'] = $this->Model_category->get_news_data($id);

		$this->load->view('view_header',$header);
		$this->load->view('view_category',$data);
		$this->load->view('view_footer');
	}

}

Zerion Mini Shell 1.0