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 * Set up the wiki settings
12 */
13class AdminWizardAdvanced extends Wizard
14{
15	function pageTitle()
16	{
17		return tra('Set up some advanced options');
18	}
19	function isEditable()
20	{
21		return true;
22	}
23
24	public function onSetupPage($homepageUrl)
25	{
26		global $prefs;
27		$smarty = TikiLib::lib('smarty');
28		// Run the parent first
29		parent::onSetupPage($homepageUrl);
30
31		return true;
32	}
33
34	function getTemplate()
35	{
36		$wizardTemplate = 'wizard/admin_advanced.tpl';
37		return $wizardTemplate;
38	}
39
40	public function onContinue($homepageUrl)
41	{
42		global $tikilib;
43
44		// Run the parent first
45		parent::onContinue($homepageUrl);
46
47		// Configure detail preferences in own page
48	}
49}
50