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

Revision 2189, 657 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
3require_once("./require.php");
4
5class LC_Page {
6    function LC_Page() {
7        /** ɬ¤ºÊѹ¹¤¹¤ë **/
8        $this->tpl_css = '/css/layout/index.css';                       // ¥á¥¤¥óCSS¥Ñ¥¹
9        /** ɬ¤ºÊѹ¹¤¹¤ë **/
10        $this->tpl_mainpage = ROOT_DIR . 'html/user_data/templates/top.tpl';        // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
11    }
12}
13
14$objPage = new LC_Page();
15$conn = new SC_DBConn();
16
17// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
18$objPage = sfGetPageLayout($objPage, false, "index.php");
19
20$objView = new SC_SiteView();
21$objView->assignobj($objPage);
22$objView->display(SITE_FRAME);
23//-----------------------------------------------------------------------------------------------------------------------------------
24
25?>
Note: See TracBrowser for help on using the repository browser.