Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

52 строки
2.9 KiB

  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Representation of Webapi module in System Configuration (Magento admin panel).
  5. *
  6. * Copyright © Magento, Inc. All rights reserved.
  7. * See COPYING.txt for license details.
  8. */
  9. -->
  10. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
  11. <system>
  12. <section id="webapi" translate="label" type="text" sortOrder="102" showInDefault="1" showInWebsite="1" showInStore="1">
  13. <label>Magento Web API</label>
  14. <tab>service</tab>
  15. <resource>Magento_Webapi::config_webapi</resource>
  16. <group id="soap" translate="label" type="text" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="1">
  17. <label>SOAP Settings</label>
  18. <field id="charset" translate="label comment" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
  19. <label>Default Response Charset</label>
  20. <comment>If empty, UTF-8 will be used.</comment>
  21. </field>
  22. </group>
  23. <group id="validation" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
  24. <label>Web Api Input Limits</label>
  25. <field id="input_limit_enabled" translate="label" type="select" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
  26. <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
  27. <label>Enable Input Limits</label>
  28. </field>
  29. <field id="complex_array_limit" translate="label comment" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
  30. <label>Input List Limit</label>
  31. <comment>Maximum number of items allowed in an entity's array property.</comment>
  32. <depends>
  33. <field id="input_limit_enabled">1</field>
  34. </depends>
  35. </field>
  36. <field id="maximum_page_size" translate="label comment" type="text" sortOrder="15" showInDefault="1" showInWebsite="1" showInStore="1">
  37. <label>Maximum Page Size</label>
  38. <comment>Maximum number of items allowed in a paginated search result.</comment>
  39. <depends>
  40. <field id="input_limit_enabled">1</field>
  41. </depends>
  42. </field>
  43. <field id="default_page_size" translate="label comment" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
  44. <label>Default Page Size</label>
  45. <comment>Default number of items a paginated search result.</comment>
  46. </field>
  47. </group>
  48. </section>
  49. </system>
  50. </config>