| Revision 11460,
705 bytes
checked in by inoue, 19 years ago
(diff) |
|
モバイル版EC-CUBE
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Âà²ñ´°Î» |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | require_once("../require.php"); |
|---|
| 7 | |
|---|
| 8 | class LC_Page{ |
|---|
| 9 | function LC_Page(){ |
|---|
| 10 | $this->tpl_mainpage = 'mypage/refusal_complete.tpl'; |
|---|
| 11 | $this->tpl_title = "MY¥Ú¡¼¥¸/Âà²ñ¼ê³¤(´°Î»¥Ú¡¼¥¸)"; |
|---|
| 12 | $this->point_disp = false; |
|---|
| 13 | } |
|---|
| 14 | } |
|---|
| 15 | |
|---|
| 16 | $objPage = new LC_Page(); |
|---|
| 17 | $objView = new SC_SiteView(); |
|---|
| 18 | |
|---|
| 19 | $objCustomer = new SC_Customer(); |
|---|
| 20 | //¥Þ¥¤¥Ú¡¼¥¸¥È¥Ã¥×¸ÜµÒ¾ðÊóɽ¼¨ÍÑ |
|---|
| 21 | $objPage->CustomerName1 = $objCustomer->getvalue('name01'); |
|---|
| 22 | $objPage->CustomerName2 = $objCustomer->getvalue('name02'); |
|---|
| 23 | $objPage->CustomerPoint = $objCustomer->getvalue('point'); |
|---|
| 24 | |
|---|
| 25 | // ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ |
|---|
| 26 | $objPage = sfGetPageLayout($objPage, false, "mypage/index.php"); |
|---|
| 27 | |
|---|
| 28 | $objView->assignobj($objPage); |
|---|
| 29 | $objView->display(SITE_FRAME); |
|---|
| 30 | |
|---|
| 31 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.