system.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
  10. <system>
  11. <section id="cataloginventory">
  12. <group id="bulk_operations" translate="label" type="text" sortOrder="600" showInDefault="1"
  13. showInWebsite="1" showInStore="1">
  14. <label>Admin bulk operations</label>
  15. <field id="async" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="0"
  16. showInStore="0" canRestore="1">
  17. <label>Run asynchronously</label>
  18. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  19. <comment>An asynchronous queue manager must be configured</comment>
  20. </field>
  21. <field id="batch_size" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="0"
  22. showInStore="0" canRestore="1">
  23. <label>Asynchronous batch size</label>
  24. <depends>
  25. <field id="async">1</field>
  26. </depends>
  27. </field>
  28. </group>
  29. </section>
  30. </system>
  31. </config>