source: temp/branches/ec-cube-beta/html/regist/complete.php @ 11287

Revision 11287, 650 bytes checked in by uehara, 18 years ago (diff)
  • 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        $this->tpl_mainpage = 'regist/complete.tpl';
13        $this->tpl_css = URL_DIR.'css/layout/regist/complete.css';
14        $this->tpl_title = '²ñ°÷ÅÐÏ¿(´°Î»¥Ú¡¼¥¸)';
15    }
16}
17
18$objPage = new LC_Page();
19$objView = new SC_SiteView();
20$objCampaignSess = new SC_CampaignSession();
21
22// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
23$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
24
25$objView->assignobj($objPage);
26// ¥Õ¥ì¡¼¥à¤òÁªÂò(¥­¥ã¥ó¥Ú¡¼¥ó¥Ú¡¼¥¸¤«¤éÁ«°Ü¤Ê¤éÊѹ¹)
27$objCampaignSess->pageView($objView);
28
29?>
Note: See TracBrowser for help on using the repository browser.