<?php
/**
* c_offer.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 28/04/14
*/
class Offer extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', SITE_NAME);
// Reset submenu tracker
$_SESSION['submenu_last'] = '';
// Load template view
$this->View->render('v_offer');
}
}