Changeset 18481 for branches/version-2_4-dev
- Timestamp:
- 2010/01/08 13:07:51 (13 years ago)
- Location:
- branches/version-2_4-dev/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_4-dev/data/Smarty/templates/default/shopping/payment.tpl
r18472 r18481 43 43 <tr> 44 44 <th>選択</th> 45 <th colspan="<!--{if $ img_show == false}-->2<!--{else}-->3<!--{/if}-->">お支払方法</th>45 <th colspan="<!--{if $tpl_img_show == false}-->1<!--{else}-->2<!--{/if}-->">お支払方法</th> 46 46 </tr> 47 47 <!--{section name=cnt loop=$arrPayment}--> … … 52 52 <label for="pay_<!--{$smarty.section.cnt.iteration}-->"><!--{$arrPayment[cnt].payment_method|escape}--><!--{if $arrPayment[cnt].note != ""}--><!--{/if}--></label> 53 53 </td> 54 <!--{if $arrPayment[cnt].payment_image != ""}--> 55 <td> 56 <img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrPayment[cnt].payment_image}-->" /> 57 </td> 58 <!--{elseif $img_show == true}--> 59 <td></td> 60 <!--{/if}--> 54 <td> 55 <!--{if $arrPayment[cnt].payment_image != ""}--> 56 <img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrPayment[cnt].payment_image}-->" /> 57 <!--{/if}--> 58 </td> 61 59 </tr> 62 60 <!--{/section}--> -
branches/version-2_4-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php
r18472 r18481 163 163 $this->arrPayment = $this->lfGetPayment($total_pretax); 164 164 // 支払い方法の画像があるなしを取得($img_show true:ある false:なし) 165 $this-> img_show = $this->lfGetImgShow($this->arrPayment);165 $this->tpl_img_show = $this->lfGetImgShow($this->arrPayment); 166 166 // お届け時間の取得 167 167 $arrRet = $objDb->sfGetDelivTime($this->objFormParam->getValue('payment_id'));
Note: See TracChangeset
for help on using the changeset viewer.