????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/centerpiece_party_favor_designer/cp/application/controllers/admin/
Upload File :
Current File : /home2/morganrand/www/centerpiece_party_favor_designer/cp/application/controllers/admin/home.php

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

class Home extends CI_Controller
{
	function Home()
	{
		parent::__construct();
		$this->load->model('admin/mdl_home');
		$this->mdl_common->checkAdminSession();
	} 
	
	function index(){			
		
		$this->load->view('admin/header'); 
		$this->load->view('admin/dashboard');
		$this->load->view('admin/footer'); 
	}
}
?>