validation.xml 830 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <validation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Validator/etc/validation.xsd">
  9. <entity name="eav_entity">
  10. <rules>
  11. <rule name="eav_attribute_data">
  12. <entity_constraints>
  13. <constraint alias="eav_data_validator" class="Magento\Eav\Model\Validator\Attribute\Data" />
  14. </entity_constraints>
  15. </rule>
  16. </rules>
  17. <groups>
  18. <group name="form">
  19. <uses>
  20. <use rule="eav_attribute_data"/>
  21. </uses>
  22. </group>
  23. </groups>
  24. </entity>
  25. </validation>