source: temp/trunk/html/index.php @ 8931

Revision 8931, 808 bytes checked in by kakinaka, 20 years ago (diff)

blank

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