- Timestamp:
- 2008/01/18 00:06:34 (19 years ago)
- Location:
- branches/feature-module-update/data/class/pages/admin/order
- Files:
-
- 2 edited
-
LC_Page_Admin_Order.php (modified) (2 diffs)
-
LC_Page_Admin_Order_Edit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/pages/admin/order/LC_Page_Admin_Order.php
r16752 r16987 24 24 // {{{ requires 25 25 require_once(CLASS_PATH . "pages/LC_Page.php"); 26 27 /* ペイジェント決済モジュール連携用 */ 28 if (file_exists(MODULE_PATH . 'mdl_paygent/include.php') === TRUE) { 29 require_once(MODULE_PATH . 'mdl_paygent/include.php'); 30 } 26 31 27 32 /** … … 56 61 $this->arrSex = $masterData->getMasterData("mtb_sex"); 57 62 $this->arrPageMax = $masterData->getMasterData("mtb_page_max"); 63 64 /* ペイジェント決済モジュール連携用 */ 65 if(function_exists("sfPaygentOrderPage")) { 66 $this->arrDispKind = sfPaygentOrderPage(); 67 } 58 68 } 59 69 -
branches/feature-module-update/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
r16741 r16987 24 24 // {{{ requires 25 25 require_once(CLASS_PATH . "pages/LC_Page.php"); 26 27 /* ペイジェント決済モジュール連携用 */ 28 if (file_exists(MODULE_PATH . 'mdl_paygent/include.php') === TRUE) { 29 require_once(MODULE_PATH . 'mdl_paygent/include.php'); 30 } 26 31 27 32 /** … … 59 64 array("pref_id", "pref_name", "rank")); 60 65 $this->arrORDERSTATUS = $masterData->getMasterData("mtb_order_status"); 66 67 /* ペイジェント決済モジュール連携用 */ 68 if(function_exists("sfPaygentOrderPage")) { 69 $this->arrDispKind = sfPaygentOrderPage(); 70 } 61 71 } 62 72 … … 133 143 $this->arrErr = $this->lfCheek($arrInfo); 134 144 } 145 break; 146 /* ペイジェント決済モジュール連携用 */ 147 case 'paygent_order': 148 $this->paygent_return = sfPaygentOrder($_POST['paygent_type'], $order_id); 135 149 break; 136 150 default:
Note: See TracChangeset
for help on using the changeset viewer.
