source: branches/feature-module-update/html/shopping/load_payment_module.php @ 16582

Revision 16582, 1.9 KB checked in by nanasess, 16 years ago (diff)

ライセンス表記変更

  • 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// 前のページで正しく登録手続きが行われた記録があるか判定
30sfIsPrePage($objSiteSess);
31
32// アクセスの正当性の判定
33$uniqid = sfCheckNormalAccess($objSiteSess, $objCartSess);
34
35$payment_id = $_SESSION["payment_id"];
36
37// 支払いIDが無い場合にはエラー
38if($payment_id == ""){
39    sfDispSiteError(PAGE_ERROR, "", true);
40}
41
42// 決済情報を取得する
43if(sfColumnExists("dtb_payment", "memo01")){
44    $sql = "SELECT module_path, memo01, memo02, memo03, memo04, memo05, memo06, memo07, memo08, memo09, memo10 FROM dtb_payment WHERE payment_id = ?";
45    $arrPayment = $objQuery->getall($sql, array($payment_id));
46}
47
48if(count($arrPayment) > 0) {
49    $path = $arrPayment[0]['module_path'];
50    if(file_exists($path)) {
51        require_once($path);
52        exit;
53    } else {
54        sfDispSiteError(FREE_ERROR_MSG, "", true, "モジュールファイルの取得に失敗しました。<br />この手続きは無効となりました。");
55    }
56}
57
58?>
Note: See TracBrowser for help on using the repository browser.