source: temp/branches/ec-cube-beta/html/campaign/default/index.php @ 10885

Revision 10885, 560 bytes checked in by uehara, 20 years ago (diff)
Line 
1<?php
2/*
3 * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7require_once("../require.php");
8
9//---- ¥Ú¡¼¥¸É½¼¨¥¯¥é¥¹
10class LC_Page {
11   
12    function LC_Page() {
13        $this->tpl_mainpage = TEMPLATE_DIR . 'campaign/index.tpl';
14    }
15}
16
17$objPage = new LC_Page();
18$objView = new SC_SiteView(false);
19
20// ¥Ç¥£¥ì¥¯¥È¥ê̾¤ò¼èÆÀ
21$arrSplit = split('/', $_SERVER['PHP_SELF']);
22
23echo basename($_SERVER['PHP_SELF']);
24
25//----¡¡¥Ú¡¼¥¸É½¼¨
26$objView->assignobj($objPage);
27$objView->display($objPage->tpl_mainpage);
Note: See TracBrowser for help on using the repository browser.