| Revision 7569,
978 bytes
checked in by kakinaka, 20 years ago
(diff) |
|
blank
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | require_once("../require.php"); |
|---|
| 8 | require_once(DATA_PATH . "module/Request.php"); |
|---|
| 9 | |
|---|
| 10 | $objSiteSess = new SC_SiteSession(); |
|---|
| 11 | $objCartSess = new SC_CartSession(); |
|---|
| 12 | |
|---|
| 13 | // ¥¢¥¯¥»¥¹¤ÎÀµÅöÀ¤ÎȽÄê |
|---|
| 14 | $uniqid = sfCheckNormalAccess($objSiteSess, $objCartSess); |
|---|
| 15 | |
|---|
| 16 | $payment_id = $_SESSION["payment_id"]; |
|---|
| 17 | |
|---|
| 18 | // ·èºÑ¾ðÊó¤ò¼èÆÀ¤¹¤ë |
|---|
| 19 | if(sfColumnExists("dtb_payment", "memo01")){ |
|---|
| 20 | $sql = "SELECT memo01, memo02, memo03, memo04, memo05, memo06, memo07, memo08, memo09, memo10 FROM dtb_payment WHERE payment_id = ?"; |
|---|
| 21 | $arrPayment = $objQuery->getall($sql, array($payment_id)); |
|---|
| 22 | } |
|---|
| 23 | |
|---|
| 24 | if(is_numeric($module_id)) { |
|---|
| 25 | $objQuery = new SC_Query(); |
|---|
| 26 | $arrRet = $objQuery->select("main_php", "dtb_module", "module_id = ?", array($module_id)); |
|---|
| 27 | $path = MODULE_PATH . $arrRet[0]['main_php']; |
|---|
| 28 | if(file_exists($path)) { |
|---|
| 29 | require_once($path); |
|---|
| 30 | exit; |
|---|
| 31 | } else { |
|---|
| 32 | print("¥â¥¸¥å¡¼¥ë¤Î¼èÆÀ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£:".$path); |
|---|
| 33 | } |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.