app/template/default/Block/category_nav_sp.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. {% block stylesheet %}
  9.     <style>
  10.         li ul li ul li p {
  11.             padding-left: 1em;
  12.         }
  13.     </style>
  14. {% endblock %}
  15. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  16. {% macro tree(Category) %}
  17.     {% from _self import tree %}
  18.     {% if Category.children|length > 4 %}
  19.     <a href="javascript:void(0);" class="js-spNavBtn spNavBtn">
  20.         <p>{{ Category.name }}</p>
  21.         <i class="fas fa-plus openBtn"></i>
  22.         <i class="fas fa-minus closeBtn"></i>
  23.     </a>
  24.     {% else %}
  25.         <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
  26.             <p>{{ Category.name }}</p>
  27.         </a>
  28.     {% endif %}
  29.     {% if Category.children|length > 0 %}
  30.         <ul>
  31.           <li>
  32.             <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
  33.               このカテゴリすべて
  34.             </a>
  35.           </li>
  36.             {% for ChildCategory in Category.children %}
  37.             {% if ChildCategory.id is not same as(149) %}
  38.                 <li>
  39.                     {{ tree(ChildCategory) }}
  40.                 </li>
  41.             {% endif %}
  42.             {% endfor %}
  43.         </ul>
  44.     {% endif %}
  45. {% endmacro %}
  46. {# @see https://github.com/bolt/bolt/pull/2388 #}
  47. {% from _self import tree %}
  48. <div class="ec-headerCategoryArea">
  49.     {#<div class="ec-headerCategoryArea__heading">#}
  50.     {#    <p>{{ 'カテゴリ一覧'|trans }}</p>#}
  51.     {#</div>#}
  52.     <div class="ec-itemNav">
  53.         <ul class="ec-itemNav__nav">
  54.             {% for Category in Categories %}
  55.                 <li>
  56.                     {{ tree(Category) }}
  57.                 </li>
  58.             {% endfor %}
  59.             <li>
  60.                 <a href="https://shichiyo.co.jp/contact/?source=1" class="fs14">お問い合わせ</a>
  61.             </li>
  62.             <li>
  63.                 <a href="{{url('faq')}}" class="fs14">FAQ</a>
  64.             </li>
  65.             <li>
  66.                 <a href="https://fix.customer-support.shop/" class="fs14">修理受付</a>
  67.             </li>
  68.             <li>
  69.                 <a href="https://shichiyo.co.jp/newtransaction/" class="fs14">新規お取引</a>
  70.             </li>
  71.         </ul>
  72.     </div>
  73. </div>