source: branches/version-2_4/data/Smarty/templates/default/bloc/category.tpl @ 18734

Revision 18734, 2.6 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/html; 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<!--商品カテゴリーここから-->
23<h2>
24  <img src="<!--{$TPL_DIR}-->/img/side/title_cat.jpg" width="166" height="35" alt="商品カテゴリー" />
25</h2>
26<div id="categoryarea">
27  <ul id="categorytree">
28  <!--{assign var=preLev value=1}-->
29  <!--{assign var=firstdone value=0}-->
30  <!--{section name=cnt loop=$arrTree}-->
31    <!--{* 表示フラグがTRUEなら表示 *}-->
32    <!--{if $arrTree[cnt].display == 1}-->
33    <!--{assign var=level value=`$arrTree[cnt].level`}-->
34    <!--{assign var=levdiff value=`$level-$preLev`}-->
35      <!--{if $levdiff > 0}-->
36          <ul>
37      <!--{elseif $levdiff == 0 && $firstdone == 1}-->
38          </li>
39      <!--{elseif $levdiff < 0}-->
40        <!--{section name=d loop=`$levdiff*-1`}-->
41            </li>
42          </ul>
43        <!--{/section}-->
44        </li>
45      <!--{/if}-->
46    <li class="level<!--{$level}--><!--{if in_array($arrTree[cnt].category_id, $tpl_category_id) }--> onmark<!--{/if}-->"><a href="<!--{$smarty.const.URL_DIR}-->products/list.php?category_id=<!--{$arrTree[cnt].category_id}-->"<!--{if in_array($arrTree[cnt].category_id, $tpl_category_id) }--> class="onlink"<!--{/if}-->><!--{$arrTree[cnt].category_name|escape}-->(<!--{$arrTree[cnt].product_count|default:0}-->)</a>
47    <!--{if $firstdone == 0}--><!--{assign var=firstdone value=1}--><!--{/if}-->
48    <!--{assign var=preLev value=`$level`}-->
49    <!--{/if}-->
50    <!--{* セクションの最後に閉じタグを追加 *}-->
51    <!--{if $smarty.section.cnt.last}-->
52      <!--{if $preLev-1 > 0 }-->
53        <!--{section name=d loop=`$preLev-1`}-->
54          </li>
55        </ul>
56        <!--{/section}-->
57        </li>
58      <!--{else}-->
59        </li>
60      <!--{/if}-->
61    <!--{/if}-->
62  <!--{/section}-->
63  </ul>
64</div>
65<!--商品カテゴリーここまで-->
Note: See TracBrowser for help on using the repository browser.