File: //home/awaldron/www/archive/fifthace/application/controllers/about.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class About extends CI_Controller {
function index()
{
$data = array();
$data['title'] = "About Us";
$data['desc'] = "About the people and services offered by Fifth Ace Entertainment in Pittsburgh";
$data['nav'] = "about";
$data['bg'] = $this->session->userdata('bg');
$this->load->view('_head',$data);
$this->load->view('v_about',$data);
$this->load->view('_foot',$data);
}
function djs() {
$data = array();
$data['title'] = "Meet Our DJs";
$data['desc'] = "Meet the DJs, those who entertain the masses for Fifth Ace Entertainment in Pittsburgh";
$data['nav'] = "about";
$data['bg'] = $this->session->userdata('bg');
$this->load->view('_head',$data);
$this->load->view('v_djs',$data);
$this->load->view('_foot',$data);
}
function testimonials() {
$data = array();
$data['title'] = "Client Tesimonials";
$data['desc'] = "We've had a lot of great clients over the years, here's what they had to say about Fifth Ace Entertainment in Pittsburgh!";
$data['nav'] = "about";
$data['bg'] = $this->session->userdata('bg');
$this->load->view('_head',$data);
$this->load->view('v_testimonials',$data);
$this->load->view('_foot',$data);
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */