source: branches/feature-module-update/html/mobile/mypage/refusal_complete.php @ 15079

Revision 15079, 894 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 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 *
9 * 退会完了
10 */
11
12require_once("../require.php");
13
14class LC_Page{
15    function LC_Page(){
16        $this->tpl_mainpage = 'mypage/refusal_complete.tpl';
17        $this->tpl_title = "MYページ/退会手続き(完了ページ)";
18        $this->point_disp = false;
19    }
20}
21
22$objPage = new LC_Page();
23$objView = new SC_MobileView();
24
25$objCustomer = new SC_Customer();
26//マイページトップ顧客情報表示用
27$objPage->CustomerName1 = $objCustomer->getvalue('name01');
28$objPage->CustomerName2 = $objCustomer->getvalue('name02');
29$objPage->CustomerPoint = $objCustomer->getvalue('point');
30
31// レイアウトデザインを取得
32$objPage = sfGetPageLayout($objPage, false, "mypage/index.php");
33
34$objView->assignobj($objPage);
35$objView->display(SITE_FRAME);
36
37?>
Note: See TracBrowser for help on using the repository browser.