| Revision 1328,
937 bytes
checked in by naka, 20 years ago
(diff) |
|
* empty log message *
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | require_once("../require.php"); |
|---|
| 4 | |
|---|
| 5 | class LC_Page{ |
|---|
| 6 | function LC_Page(){ |
|---|
| 7 | $this->tpl_mainpage = "mypage/refusal_complete.tpl"; |
|---|
| 8 | $this->tpl_title = "MY¥Ú¡¼¥¸/Âà²ñ¼ê³¤(´°Î»¥Ú¡¼¥¸)"; |
|---|
| 9 | $this->tpl_css = '/css/layout/mypage/refusal_complete.css'; |
|---|
| 10 | $this->tpl_navi = 'mypage/navi.tpl'; |
|---|
| 11 | $this->tpl_mypageno = 'refusal'; |
|---|
| 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 | $objSiteInfo = new SC_SiteInfo(); |
|---|
| 27 | $arrInfo = $objSiteInfo->data; |
|---|
| 28 | $objPage->arrInfo = $arrInfo; |
|---|
| 29 | |
|---|
| 30 | // ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ |
|---|
| 31 | $objPage = sfGetPageLayout($objPage, false, "mypage/index.php"); |
|---|
| 32 | |
|---|
| 33 | $objView->assignobj($objPage); |
|---|
| 34 | $objView->display(SITE_FRAME); |
|---|
| 35 | |
|---|
| 36 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.