--- a/busui/owa/modules/base/install.php +++ b/busui/owa/modules/base/install.php @@ -1,1 +1,59 @@ - + + * @copyright Copyright © 2006 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.0.0 + */ + +class owa_installView extends owa_view { + + function __construct() { + + $this->default_subview = 'base.installStart'; + return parent::__construct(); + } + + function render($data) { + + //page title + $this->t->set('page_title', 'Installation'); + + // load wrapper template + $this->t->set_template('wrapper_public.tpl'); + // load body template + $this->body->set_template('install.tpl'); + + // fetch admin links from all modules + // + + $this->body->set('headline', 'Welcome to the Open Web Analytics Installation Wizard'); + $this->body->set('step', $data['subview']); + } +} + +?>