app/template/default/Block/category.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. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  9. <div class="ec-categoryNaviRole">
  10.     <div class="ec-itemNav">
  11.         {% for Category in Categories %}
  12.             {% if Category.id == 16 and Category.children|length > 0 %}
  13.                 <ul class="ec-itemNav__nav">
  14.                     {% for ChildCategory in Category.children %}
  15.                     <li>
  16.                         <a href="{{ url('product_list', {'category_id': ChildCategory.id}) }}">{{ ChildCategory.name }}</a>
  17.                     </li>
  18.                     {% endfor %}
  19.                 </ul>
  20.             {% endif %}
  21.         {% endfor %}
  22.     </div>
  23. </div>