<?php
/**
 * ****************************************************************
 * Project:      event-mps
 * Copyright:    Copyright (c) 2007
 * Company:      Thomas Niemann
 * ****************************************************************
 * Workfile:     PageNotFoundController.php
 * ****************************************************************
 * Description:
 *
 * ***************************************************************/
class PageNotFoundController extends BasicController{
	/********************************************************************
	 * default constructor
	 *******************************************************************/
	public function __construct($_postVars, $_getVars) {
		parent :: __construct($_postVars, $_getVars);
	}
	public function show () {
    $this->smartyInstance->assign('TPL_INCLUDE', $this->templatePath.$this->template);
    $this->smartyInstance->load_filter('output','trimwhitespace');
		$this->smartyInstance->display('page_body.tpl');
	}
	public function isValid () {
		return TRUE;
	}
	public function showPrintable () {
		$this->show();
	}
}
?>