- Timestamp:
- 2008/01/18 00:06:34 (15 years ago)
- Location:
- branches/feature-module-update/data
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/Smarty/templates/default/admin/order/edit.tpl
r16582 r16987 77 77 </tr> 78 78 </table> 79 79 80 <!--{* ペイジェントモジュール連携用 *}--> 81 <!--{assign var=path value=`$smarty.const.MODULE_PATH`mdl_paygent/paygent_order.tpl}--> 82 <!--{if file_exists($path)}--> 83 <!--{include file=$path}--> 84 <!--{/if}--> 85 80 86 <!--▼お客様情報ここから--> 81 87 <table width="678" border="0" cellspacing="1" cellpadding="8" summary=" "> -
branches/feature-module-update/data/Smarty/templates/default/admin/order/index.tpl
r16582 r16987 318 318 <!--検索結果表示テーブル--> 319 319 <table width="840" border="0" cellspacing="1" cellpadding="5" summary=" "> 320 320 <!--{* ペイジェントモジュール連携用 *}--> 321 <!--{assign var=path value=`$smarty.const.MODULE_PATH`mdl_paygent/paygent_order_index.tpl}--> 322 <!--{if file_exists($path)}--> 323 <!--{include file=$path}--> 324 <!--{else}--> 321 325 <tr bgcolor="#636469" align="center" class="fs12n"> 322 326 <td width="130"><span class="white">受注日</span></td> … … 348 352 </tr> 349 353 <!--{/section}--> 350 354 <!--{/if}--> 351 355 </table> 352 356 <!--検索結果表示テーブル--> -
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.