source: branches/feature-module-update/html/mobile/entry/complete.php @ 15079

Revision 15079, 996 bytes checked in by nanasess, 17 years ago (diff)

svn:mime-type application/x-httpd-php; charset=UTF-8 設定

  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
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
9class LC_Page {
10    function LC_Page() {
11        $this->tpl_css = '/css/layout/entry/complete.css';  // メインCSSパス
12       
13        if(CUSTOMER_CONFIRM_MAIL == true) {
14            // 仮会員登録完了
15            $this->tpl_mainpage = 'entry/complete.tpl';         // メインテンプレート
16        } else {
17            // 本会員登録完了
18            $this->tpl_mainpage = 'regist/complete.tpl';        // メインテンプレート           
19        }
20       
21        $this->tpl_title .= '会員登録(完了ページ)';          // ページタイトル
22    }
23}
24
25$objPage = new LC_Page();
26$objView = new SC_MobileView();
27
28
29// レイアウトデザインを取得
30$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
31
32//---- ページ表示
33$objView->assignobj($objPage);
34$objView->display(SITE_FRAME);
35
36//----------------------------------------------------------------------------------------------------------------------
37?>
Note: See TracBrowser for help on using the repository browser.