Changeset 16155 for branches/feature-module-update/html
- Timestamp:
- 2007/09/28 15:15:05 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/mobile/entry/complete.php
r15532 r16155 1 1 <?php 2 /* 3 * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved. 2 /** 3 * 4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 4 5 * 5 6 * http://www.lockon.co.jp/ 7 * 8 * 9 * モバイルサイト/登録完了 6 10 */ 11 12 // {{{ requires 7 13 require_once("../require.php"); 14 require_once(CLASS_PATH . "page_extends/entry/LC_Page_Entry_Complete_Ex.php"); 8 15 9 class 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 } 16 // }}} 17 // {{{ generate page 24 18 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 //---------------------------------------------------------------------------------------------------------------------- 19 $objPage = new LC_Page_Entry_Complete_Ex(); 20 $objPage->mobileInit(); 21 $objPage->mobileProcess(); 22 register_shutdown_function(array($objPage, "destroy")); 37 23 ?>
Note: See TracChangeset
for help on using the changeset viewer.