source: temp/trunk/html/entry/complete.php @ 1328

Revision 1328, 754 bytes checked in by naka, 20 years ago (diff)

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2require_once("../require.php");
3
4class LC_Page {
5    function LC_Page() {
6        $this->tpl_css = '/css/layout/entry/complete.css';  // ¥á¥¤¥óCSS¥Ñ¥¹
7        $this->tpl_mainpage = 'entry/complete.tpl';         // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
8        $this->tpl_title .= '²ñ°÷ÅÐÏ¿(´°Î»¥Ú¡¼¥¸)';         //¡¡¥Ú¡¼¥¸¥¿¥¤¥È¥ë
9    }
10}
11
12$objPage = new LC_Page();
13$objView = new SC_SiteView();
14
15// ¥µ¥¤¥È¾ðÊó¤ò¼èÆÀ
16$objSiteInfo = new SC_SiteInfo();
17$arrInfo = $objSiteInfo->data;
18$objPage->arrInfo = $arrInfo;
19
20// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
21$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
22
23//----¡¡¥Ú¡¼¥¸É½¼¨
24$objView->assignobj($objPage);
25$objView->display(SITE_FRAME);
26
27//----------------------------------------------------------------------------------------------------------------------
28?>
Note: See TracBrowser for help on using the repository browser.