custom/plugins/MoorlFoundation/src/Resources/views/storefront/page/content/detail.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/page/content/detail.html.twig" %}
  2. {% block page_content_section %}
  3.     {% set mfs = section.customFields.moorl_section_config %}
  4.     {% set cond1 = not mfs.salesChannel or context.salesChannel.id in mfs.salesChannel %}
  5.     {% set cond2 = not mfs.customerGroup or context.currentCustomerGroup.id in mfs.customerGroup %}
  6.     {% if cond1 and cond2 %}
  7.         {% if mfs.color %}{% set sectionClasses = ["text-#{mfs.color}"]|merge(sectionClasses) %}{% endif %}
  8.         {% if mfs.backgroundColor %}{% set sectionClasses = ["bg-#{mfs.backgroundColor}"]|merge(sectionClasses) %}{% endif %}
  9.         {% if mfs.top %}{% set sectionClasses = ["moorl-separator-#{mfs.top}-top"]|merge(sectionClasses) %}{% endif %}
  10.         {% if mfs.bottom %}{% set sectionClasses = ["moorl-separator-#{mfs.bottom}-bottom"]|merge(sectionClasses) %}{% endif %}
  11.         {% if mfs.offsetTop %}{% set sectionClasses = ["moorl-offset-#{mfs.offsetTop}-top"]|merge(sectionClasses) %}{% endif %}
  12.         {% if mfs.offsetBottom %}{% set sectionClasses = ["moorl-offset-#{mfs.offsetBottom}-bottom"]|merge(sectionClasses) %}{% endif %}
  13.         {% if mfs.separatorBackground %}{% set sectionClasses = ["bg-moorl-separator-#{mfs.separatorBackground}"]|merge(sectionClasses) %}{% endif %}
  14.         {% if mfs.fixedBackground %}{% set sectionClasses = ["bg-fixed"]|merge(sectionClasses) %}{% endif %}
  15.         {% if mfs.backgroundPaint %}{% set sectionClasses = ["moorl-paint","moorl-paint-#{mfs.backgroundPaint}"]|merge(sectionClasses) %}{% endif %}
  16.         {{ parent() }}
  17.     {% endif %}
  18. {% endblock %}