Revision 15532,
1.1 KB
checked in by nanasess, 15 years ago
(diff) |
svn:mime-type 修正
|
-
Property svn:keywords set to
Id
-
Property svn:mime-type set to
text/x-httpd-php; charset=UTF-8
|
Rev | Line | |
---|
| 1 | <?php
|
---|
| 2 | /**
|
---|
| 3 | *
|
---|
| 4 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
|
---|
| 5 | *
|
---|
| 6 | * http://www.lockon.co.jp/
|
---|
| 7 | *
|
---|
| 8 | *
|
---|
| 9 | * 変更完了
|
---|
| 10 | */
|
---|
| 11 | require_once("../require.php");
|
---|
| 12 |
|
---|
| 13 | class LC_Page{
|
---|
| 14 | function LC_Page(){
|
---|
| 15 | $this->tpl_mainpage = 'mypage/change_complete.tpl';
|
---|
| 16 | $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)';
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | $objPage = new LC_Page();
|
---|
| 21 | $objView = new SC_MobileView();
|
---|
| 22 | $objCustomer = new SC_Customer();
|
---|
| 23 |
|
---|
| 24 | // レイアウトデザインを取得
|
---|
| 25 | $objPage = sfGetPageLayout($objPage, false, "mypage/index.php");
|
---|
| 26 |
|
---|
| 27 | //セッション情報を最新の状態に更新する
|
---|
| 28 | $objCustomer->updateSession();
|
---|
| 29 |
|
---|
| 30 | //ログイン判定
|
---|
| 31 | if (!$objCustomer->isLoginSuccess(true)){
|
---|
| 32 | sfDispSiteError(CUSTOMER_ERROR, "", false, "", true);
|
---|
| 33 | }else {
|
---|
| 34 | //マイページトップ顧客情報表示用
|
---|
| 35 | $objPage->CustomerName1 = $objCustomer->getvalue('name01');
|
---|
| 36 | $objPage->CustomerName2 = $objCustomer->getvalue('name02');
|
---|
| 37 | $objPage->CustomerPoint = $objCustomer->getvalue('point');
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 |
|
---|
| 41 | $objView->assignobj($objPage);
|
---|
| 42 | $objView->display(SITE_FRAME);
|
---|
| 43 |
|
---|
| 44 | ?>
|
---|
Note: See
TracBrowser
for help on using the repository browser.