Cheetah
xmlTemplates.inc.php
Go to the documentation of this file.
1 <?php
2 
8 $aXmlTemplates = array (
9  "user" => array (
10  2 => '<user id="#1#" status="#2#" />',
11  3 => '<user id="#1#" status="#2#" type="#3#" />',
12  6 => '<user id="#1#" sex="#3#" age="#4#" photo="#5#" profile="#6#"><nick><![CDATA[#2#]]></nick></user>',
13  8 => '<user id="#1#" status="#2#" sex="#4#" age="#5#" photo="#6#" profile="#7#"><nick><![CDATA[#3#]]></nick><desc><![CDATA[#8#]]></desc></user>'
14  ),
15 
16  "result" => array (
17  1 => '<result value="#1#" />',
18  2 => '<result value="#1#" status="#2#" />'
19  ),
20 
21  "savedBoard" => array (
22  2 => '<board url="#1#"><title><![CDATA[#2#]]></title></board>'
23  ),
24 
25  "board" => array (
26  2 => '<board id="#1#" status="#2#" />',
27  3 => '<board id="#1#" in="#2#" out="#3#" />',
28  5 => '<board id="#1#" status="#2#" owner="#3#" password="#4#"><title><![CDATA[#5#]]></title></board>',
29  6 => '<board id="#1#" status="#2#" owner="#3#" password="#4#" in="#5#"><title><![CDATA[#6#]]></title></board>'
30  )
31 );
php
$aXmlTemplates
$aXmlTemplates
Definition: xmlTemplates.inc.php:8