<?php
/**
* This file contains the iwp_page_home class
*
* @version $Id$
*
*
* @package IWP
* @subpackage IWP_FrontEnd
*/
/**
* IWP Frontend Home Page Class
* This class extends the iwp_engine abstract class.
* This class handles the actions for viewing the home page on the front end
*
* @package IWP
* @subpackage IWP_FrontEnd
*/
class iwp_page_home extends iwp_engine {
/**
* Calls the parent constructor
*
* @return void Doesn't return anything
*/
public function __construct(){
parent::__construct();
}
/**
* This function tells the controller to loads the home page
*
* @return void Doesn't return anything
*/
public function ShowPage(){
$this->controller->SetContent('');
$this->controller->ShowTemplate('home');
}
}