source: temp/trunk/html/shopping/load_payment_module.php @ 7567

Revision 7567, 695 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 */
7require_once("../require.php");
8require_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
16if(is_numeric($module_id)) {
17    $objQuery = new SC_Query();
18    $arrRet = $objQuery->select("main_php", "dtb_module", "module_id = ?", array($module_id));
19    $path = MODULE_PATH . $arrRet[0]['main_php'];
20    if(file_exists($path)) {
21        require_once($path);
22        exit;
23    } else {
24        print("¥â¥¸¥å¡¼¥ë¤Î¼èÆÀ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£:".$path);
25    }
26}
27
28sfprintr($_SESSION);
29
30?>
Note: See TracBrowser for help on using the repository browser.