1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8require_once('lib/wizard/wizard.php');
9
10/**
11 * The Admin Profiles last screen
12 */
13class AdminWizardProfilesCompleted extends Wizard
14{
15	function pageTitle()
16	{
17		return tra('Configuration Profiles Wizard Completed!');
18	}
19	function isEditable()
20	{
21		return false;
22	}
23
24	public function onSetupPage($homepageUrl)
25	{
26		// Run the parent first
27		parent::onSetupPage($homepageUrl);
28
29		return true;
30	}
31
32	function getTemplate()
33	{
34		$wizardTemplate = 'wizard/profiles_completed.tpl';
35		return $wizardTemplate;
36	}
37
38	function onContinue($homepageUrl)
39	{
40		// Run the parent first
41		parent::onContinue($homepageUrl);
42	}
43}
44