Login   Register  
PHP Classes
elePHPant
Icontem

File: phritz.xsd

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Michael Collado  >  Phritz MVC framework  >  phritz.xsd  >  Download  
File: phritz.xsd
Role: Auxiliary data
Content type: text/plain
Description: Schema file for xml output
Class: Phritz MVC framework
Browser device independent MVC framework
Author: By
Last change:
Date: 2006-09-21 08:45
Size: 1,277 bytes
 

Contents

Class file image Download
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.phritz.fritz-works.com"
xmlns:phritz="http://www.phritz.fritz-works.com"
xmlns="http://www.phritz.fritz-works.com"
elementFormDefault="qualified">

<xs:element name="Array">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="ArrayItem" minOccurs="1" maxOccurs="unbounded">
        <xs:complexType mixed="true">
          <xs:sequence>
            <xs:any minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

<xs:element name="ConfigItem">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="ConfigName" type="xs:string" maxOccurs="1" minOccurs="1"/>
      <xs:element name="ConfigValue" maxOccurs="1" minOccurs="1">
        <xs:complexType mixed="true">
          <xs:sequence>
            <xs:element ref="Array" minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

<xs:element name="PhritzConfig">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="ConfigItem" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

</xs:schema>