1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <xsd:schema xmlns="http://www.symfony-project.org/schema/dic/twig"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.symfony-project.org/schema/dic/twig"
- elementFormDefault="qualified">
- <xsd:element name="config" type="config" />
- <xsd:complexType name="config">
- <xsd:sequence>
- <xsd:element name="form" type="form" minOccurs="0" maxOccurs="1" />
- <xsd:element name="global" type="global" minOccurs="0" maxOccurs="unbounded" />
- <xsd:element name="extension" type="extension" minOccurs="0" maxOccurs="unbounded" />
- </xsd:sequence>
- <xsd:attribute name="charset" type="xsd:string" />
- <xsd:attribute name="debug" type="xsd:string" />
- <xsd:attribute name="cache" type="xsd:string" />
- <xsd:attribute name="strict-variables" type="xsd:string" />
- <xsd:attribute name="auto-reload" type="xsd:string" />
- <xsd:attribute name="base-template-class" type="xsd:string" />
- <xsd:attribute name="autoescape" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="form">
- <xsd:choice minOccurs="1" maxOccurs="unbounded">
- <xsd:element name="resource" type="xsd:string" />
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="global" mixed="true">
- <xsd:attribute name="key" type="xsd:string" use="required" />
- <xsd:attribute name="type" type="xsd:string" />
- <xsd:attribute name="id" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="extension">
- <xsd:attribute name="id" type="xsd:string" />
- </xsd:complexType>
- </xsd:schema>
|