source: branches/comu-utf8/html/mobile/mypage/change_complete.php @ 15099

Revision 15099, 1.1 KB checked in by Yammy, 17 years ago (diff)

UTF-8変換済みファイルインポート
1.3.4ベース

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 */
11require_once("../require.php");
12
13class 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//ログイン判定
31if (!$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.