source: branches/version-2_5-dev/data/Smarty/templates/default/frontparts/bloc/cart.tpl @ 19943

Revision 19943, 2.3 KB checked in by Seasoft, 13 years ago (diff)

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある)

  • パラメータサフィックスの変更 *_URL_PATH → *_URLPATH
  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<div class="bloc_outer">
23    <h2><img src="<!--{$TPL_DIR}-->img/icon/ico_block_cart.gif" width="20" height="20" alt="*" class="title_icon" />
24        現在のカゴの中</h2>
25    <div id="cartarea" class="bloc_body">
26        <p class="item">商品数:<!--{$arrCartList.0.TotalQuantity|number_format|default:0}-->点</p>
27        <p>合計:<span class="price"><!--{$arrCartList.0.ProductsTotal|number_format|default:0}-->円</span><br />
28            <!--{* カゴの中に商品がある場合にのみ表示 *}-->
29            <!--{if $arrCartList.0.TotalQuantity > 0 and $arrCartList.0.free_rule > 0}-->
30                <!--{if $arrCartList.0.deliv_free > 0}-->
31                    送料手数料無料まであと<!--{$arrCartList.0.deliv_free|number_format|default:0}-->円(税込)です。
32                <!--{else}-->
33                    現在、送料は「<span class="price">無料</span>」です。
34                <!--{/if}-->
35            <!--{/if}-->
36        </p>
37        <p class="btn">
38            <a href="<!--{$smarty.const.CART_URLPATH}-->" onmouseover="chgImg('<!--{$TPL_DIR}-->img/button/btn_block_cartin_on.gif','button_cartin');" onmouseout="chgImg('<!--{$TPL_DIR}-->img/button/btn_block_cartin.gif','button_cartin');">
39                <img src="<!--{$TPL_DIR}-->img/button/btn_block_cartin.gif" width="87" height="22" alt="カゴの中を見る" border="0" name="button_cartin" id="button_cartin" /></a>
40        </p>
41    </div>
42</div>
Note: See TracBrowser for help on using the repository browser.