File: //proc/thread-self/root/home/awaldron/www/archive/ras/application/controllers/home.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$data = array();
$data['tab_on'] = 'home';
$data['split'] = true;
$data['slider'] = true;
$this->load->view('v_page_head',$data);
$this->load->view('vHome');
$this->load->view('v_page_foot');
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */