templates/Shop/includes/documentsbuttons.html.twig line 1

Open in your IDE?
  1. {% set documentsObject = app_product_documents(product) %}
  2. {% set documents = documentsObject.documents %}
  3. {% set docLang1 = documentsObject.docLang1 %}
  4. {% set docLang2 = documentsObject.docLang2 %}
  5. <div class="tabs-listing style2 mt-0 mt-md-5">
  6.     <ul class="product-tabs style2 list-unstyled d-flex-wrap justify-content-center m-0 d-none d-md-flex">
  7.         <li rel="description" class="active"><a class="tablink">{{ 'product_detail.content.product_tabs_description_translations' |trans }}</a></li>
  8.         {% if documents[docLang1] | length > 0 or documents[docLang2] | length > 0 %}
  9.                 {% for documentTypes, doc in documents[docLang1] %}
  10.                     {% set doc = null %}
  11.                     {% if documents[docLang1][documentTypes] | length > 0 %}
  12.                         {% set doc = documents[docLang1][documentTypes] | first %}
  13.                     {% else %}
  14.                         {% if documents[docLang2][documentTypes] | length > 0 %}
  15.                             {% set doc = documents[docLang2][documentTypes] | first %}
  16.                         {% endif %}
  17.                     {% endif %}
  18.                     {% if doc is not null %}
  19.                         {% set url = "" %}
  20.                         {% set title = "" %}
  21.                         {% if app_helper_is_object(doc) %}
  22.                             {%  set asset = doc.getElement() %}
  23.                             {%  set url = asset.getFrontendPath() %}
  24.                             {%  set title = doc.getDoctype() %}
  25.                         {% else %}
  26.                             {%  set url = doc %}
  27.                             {%  set title = documentTypes %}
  28.                         {% endif %}
  29.                         {% set rel = title | replace({' ': '','á':'a','é':'e','í':'i','ó':'o','ú':'u'}) %}
  30.                         {% if title is not empty %}
  31.                             <li rel="{{ rel }}"><a class="tablink" href="{{ url }}" target="_blank" rel="noreferrer noopener" >{{ ("lbl_" ~ title) | trans }}</a></li>
  32.                         {% endif %}
  33.                     {% endif %}
  34.                 {% endfor %}
  35.         {%  endif %}
  36.     </ul>
  37.     <div class="tab-container">
  38.         <h3 class="tabs-ac-style d-md-none active" rel="description">{{ 'product_detail.content.title_product_description_translations' |trans }}</h3>
  39.         <div id="description" class="tab-content">
  40.             <div class="product-description">
  41.                 <div class="row">
  42.                     <div class="col-12">
  43.                         <h4 class="pt-2 text-uppercase">{{ 'product_detail.content.title_product_description_translations' | trans }}</h4>
  44.                         {% set description = longDescription is not empty ? longDescription : shortDescription %}
  45.                         {% if description matches '/<[^>]+>/' %}
  46.                             <div class="fs-6">
  47.                                 {% for paragraph in description | split('</p>') %}
  48.                                     {% if paragraph | trim %}
  49.                                         {{ paragraph | trim | raw }}</p>
  50.                                     {% endif %}
  51.                                 {% endfor %}
  52.                             </div>
  53.                         {% else %}
  54.                             <p class="fs-6">{{ description | nl2br | raw }}</p>
  55.                         {% endif %}
  56.                     </div>
  57.                 </div>
  58.             </div>
  59.         </div>
  60.             {% if documents[docLang1] | length > 0 or documents[docLang2] | length > 0 %}
  61.                 {% for documentTypes, doc in documents[docLang1] %}
  62.                     {% set doc = null %}
  63.                     {% if documents[docLang1][documentTypes] | length > 0 %}
  64.                         {% set doc = documents[docLang1][documentTypes] | first %}
  65.                     {% else %}
  66.                         {% if documents[docLang2][documentTypes] | length > 0 %}
  67.                             {% set doc = documents[docLang2][documentTypes] | first %}
  68.                         {% endif %}
  69.                     {% endif %}
  70.                     {% if doc is not null %}
  71.                         {% set url = "" %}
  72.                         {% set title = "" %}
  73.                         {% if app_helper_is_object(doc) %}
  74.                             {%  set asset = doc.getElement() %}
  75.                             {%  set url = asset.getFrontendPath() %}
  76.                             {%  set title = doc.getDoctype() %}
  77.                         {% else %}
  78.                             {%  set url = doc %}
  79.                             {%  set title = documentTypes %}
  80.                         {% endif %}
  81.                         {% set rel = title | replace({' ': '','á':'a','é':'e','í':'i','ó':'o','ú':'u'}) %}
  82.                         {% if title is not empty %}
  83.                             <h3 class="tabs-ac-style d-md-none" rel="{{ rel }}">{{ ("lbl_" ~ title)| trans }}</h3>
  84.                             <div id="{{ rel }}" class="tab-content d-md-none">
  85.                                 <div class="product-description">
  86.                                     <div class="row">
  87.                                         <div class="col-12 col-sm-12 col-md-8 col-lg-8 mb-4 mb-md-0">
  88.                                             <h4 class="pt-2 text-uppercase">{{ ("lbl_" ~ title) | trans }}</h4>
  89.                                             <a href="{{ url }}" target="_blank" rel="noreferrer noopener" class="btn rounded-0 product-form__cart-submit mb-0"><span>{{ 'product_detail.content.manual_link_translations' |trans }}</span></a>
  90.                                         </div>
  91.                                     </div>
  92.                                 </div>
  93.                             </div>
  94.                         {% endif %}
  95.                     {% endif %}
  96.                 {% endfor %}
  97.             {%  endif %}
  98.     </div>
  99. </div>