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

42 строки
1.4 KiB

  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. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  9. <xs:complexType name="cacheType">
  10. <xs:annotation>
  11. <xs:documentation>
  12. Cache type declaration
  13. </xs:documentation>
  14. </xs:annotation>
  15. <xs:all>
  16. <xs:element name="label" type="xs:string" minOccurs="1" maxOccurs="1"/>
  17. <xs:element name="description" type="xs:string" minOccurs="1" maxOccurs="1"/>
  18. </xs:all>
  19. <xs:attribute type="xs:string" name="name" use="required"/>
  20. <xs:attribute type="xs:string" name="translate" use="optional"/>
  21. <xs:attribute type="xs:string" name="instance" use="required"/>
  22. </xs:complexType>
  23. <xs:element name="config" type="configType">
  24. <xs:unique name="uniqueCacheName">
  25. <xs:annotation>
  26. <xs:documentation>
  27. Cache name must be unique.
  28. </xs:documentation>
  29. </xs:annotation>
  30. <xs:selector xpath="type"/>
  31. <xs:field xpath="@name"/>
  32. </xs:unique>
  33. </xs:element>
  34. <xs:complexType name="configType">
  35. <xs:sequence>
  36. <xs:element type="cacheType" name="type" maxOccurs="unbounded" minOccurs="1"/>
  37. </xs:sequence>
  38. </xs:complexType>
  39. </xs:schema>