<?php
/**
* synType CMS Setup
* Module: Wizard Page Welcome
*
* Copyright © 2004-2009 V. Puttrich, MindArray
*
* http://www.mindarray.eu
*
* Author: V. Puttrich, MindArray
* ----------------------------------------------------------------------------
* $Id$
* ----------------------------------------------------------------------------
*
* This file is part of synType CMS.
*
* synType CMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* synType CMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with libMail. If not, see <http://www.gnu.org/licenses/>.
*
* ----------------------------------------------------------------------------
**/
class wizPageWelcome extends wizardPage
{
public function __construct($oWizard, &$in)
{
parent::__construct($oWizard, $in);
}
public function __destruct()
{
parent::__destruct();
}
protected function onPage($nErr)
{
$this->setTextTop("Welcome to synType CMS Setup");
$this->addText($this->_getText());
return $this->getContents();
}
private function _getText()
{
return <<<TEXT
This wizard will guide you through the installation of synType CMS.
<br /><br />
Please follow the instructions on the following pages.
TEXT;
}
}
?>