src/Eccube/Resource/template/default/Block/category_nav_pc.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% macro tree(Category) %}
  9.     {% from _self import tree %}
  10.     {% set category = attribute(Category, 'category') %}
  11.     {% set children = attribute(Category, 'children') %}
  12.     <a href="{{ url('product_list') }}?category_id={{ category.id }}">
  13.         {{ category.name }}
  14.     </a>
  15.     {% if children|length > 0 %}
  16.         <ul>
  17.             {% for child in children %}
  18.                 <li>
  19.                     {{ tree(child) }}
  20.                 </li>
  21.             {% endfor %}
  22.         </ul>
  23.     {% endif %}
  24. {% endmacro %}
  25. {# @see https://github.com/bolt/bolt/pull/2388 #}
  26. {% from _self import tree %}
  27. <div class="ec-categoryNaviRole">
  28.     <div class="ec-itemNav">
  29.         <ul class="ec-itemNav__nav">
  30.             {% for Category in displayableCategories %}
  31.                 <li>
  32.                     {{ tree(Category) }}
  33.                 </li>
  34.             {% endfor %}
  35.         </ul>
  36.     </div>
  37. </div>