themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Product/Show/_association.html.twig line 1

Open in your IDE?
  1. {% import '@SyliusShop/Common/Macro/sectionHeaders.html.twig' as headers %}
  2. {% set countNbProduct = app_get_parameter('nb_'~product_association.type.code) %}
  3. {% if countNbProduct and countNbProduct != "" %}
  4.     {% set intNbProduct = app_get_int_from_string(countNbProduct) %}
  5.     {% set associatedProducts = product_association.associatedProducts|slice(0, intNbProduct) %}
  6. {% else %}
  7.     {% set associatedProducts = product_association.associatedProducts %}
  8. {% endif %}
  9. <div id="sylius-product-association-{{ product_association.type.name }}" {{ sylius_test_html_attribute('product-association', product_association.type.name) }} class="">
  10. {% include '@SyliusShop/Product/_horizontalList.html.twig' with {'products': associatedProducts, 'header': product_association.type.translation.name} %}
  11. </div>
  12.