Login   Register  
PHP Classes
elePHPant
Icontem

File: tests/test.xml

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Fabio Ambrosanio  >  HTML_QuickForm_Wizard  >  tests/test.xml  >  Download  
File: tests/test.xml
Role: Auxiliary data
Content type: text/plain
Description: Example of use
Class: HTML_QuickForm_Wizard
Display and process wizard-like multipage forms
Author: By
Last change: Page C has no rules, its next page is the following D
Date: 2007-04-18 23:25
Size: 597 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?>
<pages>
    <page name="A" class="PageFirst" file="./PageFirst.php" start="true">
        <rules>
            <rule input="sure" next="B" />
            <rule next="C" />
        </rules>
    </page>
    <page name="B" class="PageSecond">
        <rules>
            <rule>
                <rule input="sure" next="D" />
                <rule next="C" />
            </rule>
            <rule next="D" />
        </rules>
    </page>
    <page name="C" class="PageSecondBis" />
    <page name="D" class="PageThird" final="true" />
</pages>