comparison install/step2.php @ 32:01a8fdc0cebb

testing: Web base setting page.
author Sushi-k <epgrec@park.mda.or.jp>
date Mon, 27 Jul 2009 18:48:51 +0900
parents
children a935b4789aff
comparison
equal deleted inserted replaced
31:6bb8f29c80c0 32:01a8fdc0cebb
1 <?php
2 include_once("../config.php");
3 include_once("../Smarty/Smarty.class.php");
4 include_once("../Settings.class.php");
5
6 $settings = Settings::factory();
7
8 $smarty = new Smarty();
9 $smarty->template_dir = "../templates/";
10 $smarty->compile_dir = "../templates_c/";
11 $smarty->cache_dir = "../cache/";
12
13 $smarty->assign( "settings", $settings );
14 $smarty->assign( "install_path", INSTALL_PATH );
15 $smarty->assign( "post_to", "step3.php" );
16 $smarty->assign( "sitetitle", "インストールステップ2" );
17
18 $smarty->display("systemSetting.html");
19 ?>