I would like to see an XML IVR implementation for FreeSwitch along these lines...<br><br>dtmf.class.php<br>yesnogram.class.php<br>login.class.php<br>menu.class.php<br>message.class.php<br>navigator.class.php<br>noinput.class.php<br>
nomatch.class.php<br>record.class.php<br>script.class.php<br>subdb.class.php<br>transfer.class.php<br>click2call.class.php<br>vxml.class.php<br>vxml.class_debug.class.php<br><br># &lt;?php<br>#&nbsp; <br># /**<br># * Default home application<br>
# */<br># class home {<br>#&nbsp; <br># // FreeSwitch VXML Application<br>#<br># var $app;<br>#<br># function home () {<br>#<br># }<br>#<br># function process () {<br>#<br># $this-&gt;app = new FreeSwitch VXML;<br>#<br># $this-&gt;app-&gt;start_vxml(&#39;&#39;,&#39;&#39;,&#39;en&#39;,&#39;&#39;,&#39;&#39;,&#39;2.0&#39;);<br>
#<br># $this-&gt;app-&gt;load(&quot;message&quot;, array(&quot;&quot;,&quot;Hello World !&quot;,&quot;&quot;,&quot;hello.wav&quot;));<br>#<br># $this-&gt;app-&gt;end_vxml();<br>#<br># $this-&gt;app-&gt;generate();<br># }<br>
# }<br>#&nbsp; <br># ?&gt;<br><br>