source: branches/comu/html/index.php @ 12197

Revision 12197, 778 bytes checked in by adati, 17 years ago (diff)

1.3.0正式版のマージ

Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7 
8require_once("./require.php");
9
10print("test4");
11
12class LC_Page {
13    function LC_Page() {
14        /** ɬ¤ºÊѹ¹¤¹¤ë **/
15        $this->tpl_css = URL_DIR.'css/layout/index.css';                        // ¥á¥¤¥óCSS¥Ñ¥¹
16        /** ɬ¤ºÊѹ¹¤¹¤ë **/
17        $this->tpl_mainpage = HTML_PATH . "user_data/templates/top.tpl";        // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
18    }
19}
20
21$objPage = new LC_Page();
22$conn = new SC_DBConn();
23
24// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
25$objPage = sfGetPageLayout($objPage, false, "index.php");
26
27$objView = new SC_SiteView();
28$objView->assignobj($objPage);
29$objView->display(SITE_FRAME);
30//-----------------------------------------------------------------------------------------------------------------------------------
31?>
Note: See TracBrowser for help on using the repository browser.