source: temp/trunk/html/abouts/index.php @ 1328

Revision 1328, 891 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        /** ɬ¤º»ØÄꤹ¤ë **/
7        $this->tpl_css = '/css/layout/abouts/index.css';        // ¥á¥¤¥óCSS¥Ñ¥¹
8        /** ɬ¤º»ØÄꤹ¤ë **/
9        $this->tpl_mainpage = 'abouts/index.tpl';           // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
10        $this->tpl_page_category = 'abouts';   
11        $this->tpl_title = 'Åö¥µ¥¤¥È¤Ë¤Ä¤¤¤Æ';
12    }
13}
14
15$objPage = new LC_Page();
16$objView = new SC_SiteView();
17
18// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
19$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
20
21// ¥µ¥¤¥È¾ðÊó¤ò¼èÆÀ
22$objSiteInfo = new SC_SiteInfo();
23$arrInfo = $objSiteInfo->data;
24
25// ÅÔÆ»Éܸ©Ì¾¤òÊÑ´¹
26global $arrPref;
27$arrInfo['pref'] = $arrPref[$arrInfo['pref']];
28
29$objPage->arrInfo = $arrInfo;
30
31$objView->assignobj($objPage);
32$objView->display(SITE_FRAME);
33
34//-----------------------------------------------------------------------------------------------------------------------------------
35?>
Note: See TracBrowser for help on using the repository browser.