Cheetah
xmlTemplates.inc.php
Go to the documentation of this file.
1 <?php
2 
8 $aXmlTemplates = array (
9  "message" => array (
10  14 => '<message id="#1#" room="#3#" author="#4#" user="#5#" whisper="#6#" color="#7#" bold="#8#" underline="#9#" italic="#10#" size="#11#" font="#12#" smileset="#13#" date="#14#"><text><![CDATA[#2#]]></text></message>'
11  ),
12 
13  "file" => array (
14  3 => '<file user="#1#" file="#2#"><name><![CDATA[#3#]]></name></file>'
15  ),
16 
17  "history" => array (
18  "user" => array(2 => '<user id="#1#"><![CDATA[#2#]]></user>'),
19  "room" => array(3 => '<room id="#1#" title="#2#" count="#3#">'),
20  "msg" => array(3 => '<msg id="#1#" sender="#2#"><![CDATA[#3#]]></msg>', 4 => '<msg id="#1#" sender="#2#" recipient="#3#"><![CDATA[#4#]]></msg>'),
21  "private" => array(3 => '<private sender="#1#" recipient="#2#" count="#3#">')
22  ),
23 
24  "user" => array (
25  2 => '<user id="#1#" status="#2#" />',
26  3 => '<user id="#1#" status="#2#" type="#3#" />',
27  4 => '<user id="#1#" status="#2#" type="#3#" online="#4#" />',
28  8 => '<user id="#1#" sex="#3#" age="#4#" photo="#5#" profile="#6#" banned="#7#" type="#8#"><nick><![CDATA[#2#]]></nick></user>',
29  10 => '<user id="#1#" status="#2#" sex="#4#" age="#5#" photo="#7#" profile="#8#" type="#9#" online="#10#"><nick><![CDATA[#3#]]></nick><desc><![CDATA[#6#]]></desc></user>',
30  11 => '<user id="#1#" status="#2#" sex="#4#" age="#5#" photo="#7#" profile="#8#" type="#9#" online="#10#" time="#11#"><nick><![CDATA[#3#]]></nick><desc><![CDATA[#6#]]></desc></user>'
31  ),
32 
33  "result" => array (
34  1 => '<result value="#1#" />',
35  2 => '<result value="#1#" status="#2#" />'
36  ),
37 
38  "room" => array (
39  2 => '<room id="#1#" status="#2#" />',
40  3 => '<room id="#1#" in="#2#" out="#3#" />',
41  6 => '<room id="#1#" status="#2#" owner="#3#" password="#4#"><title><![CDATA[#5#]]></title><desc><![CDATA[#6#]]></desc></room>',
42  7 => '<room id="#1#" in="#6#" inTime="#7#" owner="#2#" password="#3#"><title><![CDATA[#4#]]></title><desc><![CDATA[#5#]]></desc></room>',
43  8 => '<room id="#1#" status="#2#" in="#7#" out="#8#" owner="#3#" password="#4#"><title><![CDATA[#5#]]></title><desc><![CDATA[#6#]]></desc></room>'
44  ),
45 
46  "smileset" => array (
47  2 => '<properties current="#1#" url="#2#" />',
48  3 => '<smileset folder="#1#" config="#2#"><![CDATA[#3#]]></smileset>'
49  )
50 );
php
$aXmlTemplates
$aXmlTemplates
Definition: xmlTemplates.inc.php:8