getParam("PATH_CLASSES")."FR_ControllerFront.php" ; include_once $oWebConfig->getParam("PATH_CLASSES")."FR_ViewHTML.php" ; class Index extends FR_ControllerFront { public function __construct() { parent::__construct() ; } public function Process() { if( $this->requestType == "GET" ) { $this->oLogger->log( $_GET ); $this->oView = new FR_ViewHTML( "index.html" , $this->oWebConfig->getParam("TPL") ) ; $this->oView->Load() ; $this->oView->Handler()->MergeField('var.redirect', array_key_exists( "redirect", $_GET ) ? $_GET["redirect"] : "" ); $this->oView->Show() ; } } } $oPage = new Index() ; $oPage->Process() ; ?>