source: branches/comu-ver2/html/shopping/load_payment_module.php @ 18234

Revision 18234, 2.3 KB checked in by Seasoft, 15 years ago (diff)

#528(改行コードが混在している)

  • SVN属性の変更。ただし、以下は除外。
    • /data/module
    • /data/pdf
    • /html/test
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23require_once("../require.php");
24
25$objSiteSess = new SC_SiteSession();
26$objCartSess = new SC_CartSession();
27$objQuery = new SC_Query();
28
29// 前のページで正しく登録手続きが行われた記録があるか判定
30SC_Utils::sfIsPrePage($objSiteSess);
31GC_Utils::gfPrintLog("before");
32// SPSモジュール連携用
33if (file_exists(MODULE_PATH . 'mdl_sps/inc/include.php')
34 && !$objCartSess->getTotalQuantity()) {
35
36    require_once MODULE_PATH . 'mdl_sps/inc/include.php';
37    header("Location: " . ERROR_URL);
38    exit;
39}
40
41// アクセスの正当性の判定
42$uniqid = SC_Utils::sfCheckNormalAccess($objSiteSess, $objCartSess);
43GC_Utils::gfPrintLog("after");
44
45$payment_id = $_SESSION["payment_id"];
46
47// 支払いIDが無い場合にはエラー
48if($payment_id == ""){
49    SC_Utils::sfDispSiteError(PAGE_ERROR, "", true);
50}
51
52// 決済情報を取得する
53$objDB = new SC_Helper_DB_Ex();
54
55if($objDB->sfColumnExists("dtb_payment", "memo01")){
56    $sql = "SELECT module_path, memo01, memo02, memo03, memo04, memo05, memo06, memo07, memo08, memo09, memo10 FROM dtb_payment WHERE payment_id = ?";
57    $arrPayment = $objQuery->getall($sql, array($payment_id));
58}
59
60if(count($arrPayment) > 0) {
61    $path = $arrPayment[0]['module_path'];
62    if(file_exists($path)) {
63        require_once($path);
64        exit;
65    } else {
66        SC_Utils::sfDispSiteError(FREE_ERROR_MSG, "", true, "モジュールファイルの取得に失敗しました。<br />この手続きは無効となりました。");
67    }
68}
69
70?>
Note: See TracBrowser for help on using the repository browser.