custom/plugins/BettenABC/src/Resources/views/storefront/page/product-detail/tabs.html.twig line 1

Open in your IDE?
  1. {#
  2. # Project:      www.betten-abc.de
  3. # Company:      arboro GmbH
  4. # Created by:   Daniel Geike
  5. # Created on:   08.07.22
  6. # Description:
  7. #}
  8. {% sw_extends "@Storefront/storefront/page/product-detail/tabs.html.twig" %}
  9. {% block page_product_detail_tabs_navigation_description %}
  10.     <li class="nav-item">
  11.         <a class="nav-link {% if (ratingSuccess != 1) and (ratingSuccess != -1) %}active{% endif %} product-detail-tab-navigation-link"
  12.            id="description-tab"
  13.                 {{ dataBsToggleAttr ~ "=tab" }}
  14.            data-offcanvas-tabs="true"
  15.            href="#description-tab-pane"
  16.            role="tab"
  17.            aria-controls="description-tab-pane"
  18.            aria-selected="true">
  19.             <span>{{ "detail.tabsDescription"|trans|sw_sanitize }}</span>
  20.             <span class="product-detail-tab-navigation-icon">
  21.                 {% sw_icon 'arrow-head-down' style {
  22.                     pack: 'default'
  23.                 } %}
  24.             </span>
  25.         </a>
  26.     </li>
  27. {% endblock %}
  28. {# add span, because Shopware is apparently too lazy #}
  29. {% block page_product_detail_tabs_navigation_review %}
  30.     {% if config('core.listing.showReview') %}
  31.         <li class="nav-item">
  32.             <a class="nav-link {% if (ratingSuccess == 1) or (ratingSuccess == -1) %}active{% endif %} product-detail-tab-navigation-link"
  33.                id="review-tab"
  34.             {{ dataBsToggleAttr ~ "=tab" }}
  35.             data-offcanvas-tabs="true"
  36.             href="#review-tab-pane"
  37.             role="tab"
  38.             aria-controls="review-tab-pane"
  39.             aria-selected="true">
  40.                 <span>
  41.                     {{ "detail.tabsReview"|trans|sw_sanitize }}
  42.                 </span>
  43.                 <span class="product-detail-tab-navigation-icon">
  44.                     {% sw_icon 'arrow-head-down' style {
  45.                         pack: 'default'
  46.                     } %}
  47.                 </span>
  48.             </a>
  49.         </li>
  50.     {% endif %}
  51. {% endblock %}