source: branches/version-2_5-dev/data/Smarty/templates/admin/products/confirm.tpl @ 20116

Revision 20116, 8.4 KB checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 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 */
23*}-->
24<form name="form1" id="form1" method="post" action="?" enctype="multipart/form-data">
25  <!--{foreach key=key item=item from=$arrForm}-->
26    <!--{if $key == 'product_status'}-->
27      <!--{foreach item=statusVal from=$item}-->
28      <input type="hidden" name="<!--{$key}-->[]" value="<!--{$statusVal|h}-->" />
29      <!--{/foreach}-->
30    <!--{else}-->
31      <input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
32    <!--{/if}-->
33  <!--{/foreach}-->
34  <div id="products" class="contents-main">
35
36  <table>
37    <tr>
38      <th>商品名</th>
39      <td>
40      <!--{$arrForm.name|h}-->
41      </td>
42    </tr>
43    <tr>
44      <th>商品カテゴリ</th>
45      <td>
46      <!--{section name=cnt loop=$arrCategory_id}-->
47        <!--{assign var=key value=$arrCategory_id[cnt]}-->
48        <!--{$arrCatList[$key]|strip|sfTrim}--><br />
49      <!--{/section}-->
50      </td>
51    </tr>
52    <tr>
53      <th>公開・非公開</th>
54      <td>
55      <!--{$arrDISP[$arrForm.status]}-->
56      </td>
57    </tr>
58    <tr>
59      <th>商品ステータス</th>
60      <td>
61      <!--{foreach from=$arrForm.product_status item=status}-->
62        <img src="<!--{$TPL_URLPATH_DEFAULT}--><!--{$arrSTATUS_IMAGE[$status]}-->">
63      <!--{/foreach}-->
64      </td>
65    </tr>
66
67    <!--{if $tpl_nonclass == true}-->
68    <tr>
69      <th>商品種別</th>
70      <td>
71      <!--{$arrProductType[$arrForm.product_type_id]}-->
72      </td>
73    </tr>
74    <tr>
75      <th>ダウンロードファイル名</th>
76      <td>
77      <!--{$arrForm.down_filename|h}-->
78      </td>
79    </tr>
80    <tr>
81      <th>ダウンロード商品用<BR />ファイル</th>
82      <td>
83      <!--{if $arrForm.down_realfilename != ""}-->
84          <!--{$arrForm.down_realfilename|h}-->
85      <!--{/if}-->
86      </td>
87    </tr>
88    <tr>
89      <th>商品コード</th>
90      <td>
91      <!--{$arrForm.product_code|h}-->
92      </td>
93    </tr>
94    <tr>
95      <th><!--{$smarty.const.NORMAL_PRICE_TITLE}--></th>
96      <td>
97      <!--{$arrForm.price01|h}-->
98      円</td>
99    </tr>
100    <tr>
101      <th><!--{$smarty.const.SALE_PRICE_TITLE}--></th>
102      <td>
103      <!--{$arrForm.price02|h}-->
104      円</td>
105    </tr>
106    <tr>
107      <th>在庫数</th>
108      <td>
109      <!--{if $arrForm.stock_unlimited == 1}-->
110        無制限
111      <!--{else}-->
112        <!--{$arrForm.stock|h}-->
113      <!--{/if}-->
114      </td>
115    </tr>
116    <!--{/if}-->
117
118    <tr>
119      <th>商品送料</th>
120      <td>
121        <!--{$arrForm.deliv_fee|h}-->
122        円</td>
123    </tr>
124    <tr>
125      <th>ポイント付与率</th>
126      <td>
127      <!--{$arrForm.point_rate|h}-->
128      %</td>
129    </tr>
130    <tr>
131      <th>発送日目安</th>
132      <td>
133      <!--{$arrDELIVERYDATE[$arrForm.deliv_date_id]|h}-->
134      </td>
135    </tr>
136    <tr>
137      <th>購入制限</th>
138      <td>
139        <!--{$arrForm.sale_limit|default:'無制限'|h}-->
140      </td>
141    </tr>
142    <tr>
143      <th>メーカー</th>
144      <td>
145        <!--{$arrMaker[$arrForm.maker_id]|h}-->
146      </td>
147    </tr>
148    <tr>
149      <th>メーカーURL</th>
150      <td>
151      <!--{$arrForm.comment1|h|sfPutBR:$smarty.const.LINE_LIMIT_SIZE}-->
152      </td>
153    </tr>
154    <!--{*
155    <tr>
156      <th>成分</th>
157      <td>
158      <!--{$arrForm.comment2|h}-->
159      </td>
160    </tr>
161    *}-->
162    <tr>
163      <th>検索ワード</th>
164      <td>
165      <!--{$arrForm.comment3|h}-->
166      </td>
167    </tr>
168    <tr>
169      <th>備考欄(SHOP専用)</th>
170      <td>
171        <!--{$arrForm.note|h|nl2br}-->
172      </td>
173    </tr>
174    <tr>
175      <th>一覧-メインコメント</th>
176      <td>
177      <!--{$arrForm.main_list_comment|h|nl2br}-->
178      </td>
179    </tr>
180    <tr>
181      <th>詳細-メインコメント</th>
182      <td>
183      <!--{$arrForm.main_comment|nl2br_html}-->
184      </td>
185    </tr>
186    <tr>
187      <th>一覧-メイン画像</th>
188      <td>
189      <!--{assign var=key value="main_list_image"}-->
190      <!--{if $arrFile[$key].filepath != ""}-->
191      <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
192      <!--{/if}-->
193      </td>
194    </tr>
195    <tr>
196      <th>詳細-メイン画像</th>
197      <td>
198      <!--{assign var=key value="main_image"}-->
199      <!--{if $arrFile[$key].filepath != ""}-->
200      <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
201      <!--{/if}-->
202      </td>
203    </tr>
204    <tr>
205      <th>詳細-メイン拡大画像</th>
206      <td>
207      <!--{assign var=key value="main_large_image"}-->
208      <!--{if $arrFile[$key].filepath != ""}-->
209      <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
210      <!--{/if}-->
211      </td>
212    </tr>
213
214    <!--{* オペビルダー用 *}-->
215    <!--{if "sfViewAdminOpe"|function_exists === TRUE}-->
216    <!--{include file=`$smarty.const.MODULE_REALDIR`mdl_opebuilder/admin_ope_view.tpl}-->
217    <!--{/if}-->
218
219    <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
220    <!--▼商品<!--{$smarty.section.cnt.iteration}-->-->
221    <tr>
222      <th>詳細-サブタイトル(<!--{$smarty.section.cnt.iteration}-->)</th>
223      <td>
224      <!--{assign var=key value="sub_title`$smarty.section.cnt.iteration`"}-->
225      <!--{$arrForm[$key]|h}-->
226      </td>
227    </tr>
228    <tr>
229      <th>詳細-サブコメント(<!--{$smarty.section.cnt.iteration}-->)</th>
230      <td>
231      <!--{assign var=key value="sub_comment`$smarty.section.cnt.iteration`"}-->
232      <!--{$arrForm[$key]|nl2br_html}-->
233      </td>
234    </tr>
235    <tr>
236      <th>詳細-サブ画像(<!--{$smarty.section.cnt.iteration}-->)</th>
237      <td>
238      <!--{assign var=key value="sub_image`$smarty.section.cnt.iteration`"}-->
239      <!--{if $arrFile[$key].filepath != ""}-->
240      <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
241      <!--{/if}-->
242      </td>
243    </tr>
244    <tr>
245      <th>詳細-サブ拡大画像(<!--{$smarty.section.cnt.iteration}-->)</th>
246      <td>
247      <!--{assign var=key value="sub_large_image`$smarty.section.cnt.iteration`"}-->
248      <!--{if $arrFile[$key].filepath != ""}-->
249      <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->" /><br />
250      <!--{/if}-->
251      </td>
252    </tr>
253    <!--▲商品<!--{$smarty.section.cnt.iteration}-->-->
254    <!--{/section}-->
255
256    <!--{if $smarty.const.OPTION_RECOMMEND == 1}-->
257    <!--▼関連商品-->
258    <!--{section name=cnt loop=$smarty.const.RECOMMEND_PRODUCT_MAX}-->
259    <!--{assign var=recommend_no value="`$smarty.section.cnt.iteration`"}-->
260    <tr>
261      <th>関連商品(<!--{$smarty.section.cnt.iteration}-->)<br />
262      <!--{if $arrRecommend[$recommend_no].product_id|strlen >= 1}-->
263        <img src="<!--{$smarty.const.ROOT_URLPATH}-->resize_image.php?image=<!--{$arrRecommend[$recommend_no].main_list_image|sfNoImageMainList|h}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[$recommend_no].name|h}-->">
264      <!--{/if}-->
265      </th>
266      <td>
267      <!--{if $arrRecommend[$recommend_no].product_id|strlen >= 1}-->
268        商品コード:<!--{$arrRecommend[$recommend_no].product_code_min}--><br />
269        商品名:<!--{$arrRecommend[$recommend_no].name|h}--><br />
270        コメント:<br />
271        <!--{$arrRecommend[$recommend_no].comment|h|nl2br}-->
272      <!--{/if}-->
273      </td>
274    </tr>
275    <!--{/section}-->
276    <!--▲関連商品-->
277    <!--{/if}-->
278  </table>
279
280    <div class="btn-area">
281        <ul>
282            <li><a class="btn-action" href="javascript:;" onclick="fnModeSubmit('confirm_return','',''); return false;"><span class="btn-prev">前のページに戻る</span></a></li>
283            <li><a class="btn-action" href="javascript:;" onclick="document.form1.submit(); return false;"><span class="btn-next">この内容で登録する</span></a></li>
284        </ul>
285    </div>
286</div>
287</form>
Note: See TracBrowser for help on using the repository browser.