system.xml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
  9. <system>
  10. <section id="catalog" type="text" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="1">
  11. <group id="layered_navigation" translate="label" sortOrder="490" showInDefault="1" showInWebsite="1" showInStore="1">
  12. <label>Layered Navigation</label>
  13. <field id="display_product_count" translate="label" type="select" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
  14. <label>Display Product Count</label>
  15. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  16. </field>
  17. <field id="price_range_calculation" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
  18. <label>Price Navigation Step Calculation</label>
  19. <source_model>Magento\Catalog\Model\Config\Source\Price\Step</source_model>
  20. </field>
  21. <field id="price_range_step" translate="label" type="text" sortOrder="15" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
  22. <label>Default Price Navigation Step</label>
  23. <validate>validate-number validate-number-range number-range-0.01-9999999999999999</validate>
  24. <depends>
  25. <field id="price_range_calculation">manual</field>
  26. </depends>
  27. </field>
  28. <field id="price_range_max_intervals" translate="label comment" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
  29. <label>Maximum Number of Price Intervals</label>
  30. <comment>Maximum number of price intervals is 100</comment>
  31. <validate>validate-digits validate-digits-range digits-range-2-100</validate>
  32. <depends>
  33. <field id="price_range_calculation">manual</field>
  34. </depends>
  35. </field>
  36. <field id="one_price_interval" translate="label comment" type="select" sortOrder="15" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
  37. <label>Display Price Interval as One Price</label>
  38. <comment>This setting will be applied when all prices in the specific price interval are equal.</comment>
  39. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  40. <depends>
  41. <field id="price_range_calculation">improved</field>
  42. </depends>
  43. </field>
  44. <field id="interval_division_limit" translate="label comment" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
  45. <label>Interval Division Limit</label>
  46. <comment>Please specify the number of products, that will not be divided into subintervals.</comment>
  47. <validate>validate-digits validate-digits-range digits-range-1-10000</validate>
  48. <depends>
  49. <field id="price_range_calculation">improved</field>
  50. </depends>
  51. </field>
  52. </group>
  53. </section>
  54. </system>
  55. </config>