|
@@ -11,6 +11,7 @@
|
|
|
<xsd:sequence>
|
|
|
<xsd:element name="bundle" type="bundle" minOccurs="0" maxOccurs="unbounded" />
|
|
|
<xsd:element name="filter" type="filter" minOccurs="0" maxOccurs="unbounded" />
|
|
|
+ <xsd:element name="twig" type="twig" minOccurs="0" maxOccurs="unbounded" />
|
|
|
</xsd:sequence>
|
|
|
<xsd:attribute name="debug" type="xsd:string" />
|
|
|
<xsd:attribute name="use-controller" type="xsd:string" />
|
|
@@ -32,4 +33,15 @@
|
|
|
<xsd:attribute name="resource" type="xsd:string" />
|
|
|
<xsd:anyAttribute namespace="##any" processContents="lax" />
|
|
|
</xsd:complexType>
|
|
|
+
|
|
|
+ <xsd:complexType name="twig">
|
|
|
+ <xsd:sequence>
|
|
|
+ <xsd:element name="function" type="twig_function" minOccurs="0" maxOccurs="unbounded" />
|
|
|
+ </xsd:sequence>
|
|
|
+ </xsd:complexType>
|
|
|
+
|
|
|
+ <xsd:complexType name="twig_function">
|
|
|
+ <xsd:attribute name="name" type="xsd:string" use="required" />
|
|
|
+ <xsd:anyAttribute namespace="##any" processContents="lax" />
|
|
|
+ </xsd:complexType>
|
|
|
</xsd:schema>
|