xajaxResponse.inc.php
43.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
<?php
/*
File: xajaxResponse.inc.php
Contains the response class.
Title: xajax response class
Please see <copyright.inc.php> for a detailed description, copyright
and license information.
*/
/*
@package xajax
@version $Id: xajaxResponse.inc.php 361 2007-05-24 12:48:14Z calltoconstruct $
@copyright Copyright (c) 2005-2007 by Jared White & J. Max Wilson
@copyright Copyright (c) 2008-2009 by Joseph Woolley, Steffen Konerow, Jared White & J. Max Wilson
@license http://www.xajaxproject.org/bsd_license.txt BSD License
*/
/*
Class: xajaxResponse
Collect commands to be sent back to the browser in response to a xajax
request. Commands are encoded and packaged in a format that is acceptable
to the response handler from the javascript library running on the client
side.
Common commands include:
- <xajaxResponse->assign>: Assign a value to an elements property.
- <xajaxResponse->append>: Append a value on to an elements property.
- <xajaxResponse->script>: Execute a portion of javascript code.
- <xajaxResponse->call>: Execute an existing javascript function.
- <xajaxResponse->alert>: Display an alert dialog to the user.
Elements are identified by the value of the HTML id attribute. If you do
not see your updates occuring on the browser side, ensure that you are
using the correct id in your response.
*/
class xajaxResponse
{
/**#@+
* @access protected
*/
/*
Array: aCommands
Stores the commands that will be sent to the browser in the response.
*/
var $aCommands;
/*
String: sCharacterEncoding
The name of the encoding method you wish to use when dealing with
special characters. See <xajax->setEncoding> for more information.
*/
var $sCharacterEncoding;
/*
Boolean: bOutputEntities
Convert special characters to the HTML equivellent. See also
<xajax->bOutputEntities> and <xajax->setFlag>.
*/
var $bOutputEntities;
/*
Mixed: returnValue
A string, array or integer value to be returned to the caller when
using 'synchronous' mode requests. See <xajax->setMode> for details.
*/
var $returnValue;
/*
Object: objPluginManager
A reference to the global plugin manager.
*/
var $objPluginManager;
/**#@-*/
/*
Constructor: xajaxResponse
Create and initialize a xajaxResponse object.
*/
function xajaxResponse()
{
//SkipDebug
if (0 < func_num_args()) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:EDERR:01')
, E_USER_ERROR
);
}
//EndSkipDebug
$this->aCommands = array();
@$objResponseManager =& xajaxResponseManager::getInstance();
$this->sCharacterEncoding = $objResponseManager->getCharacterEncoding();
$this->bOutputEntities = $objResponseManager->getOutputEntities();
@$this->objPluginManager =& xajaxPluginManager::getInstance();
}
/*
Function: setCharacterEncoding
Overrides the default character encoding (or the one specified in the
constructor) to the specified character encoding.
Parameters:
sCharacterEncoding - (string): The encoding method to use for this response.
See also, <xajaxResponse->xajaxResponse>()
Returns:
object - The xajaxResponse object.
*/
function setCharacterEncoding($sCharacterEncoding)
{
$this->sCharacterEncoding = $sCharacterEncoding;
return $this;
}
/*
Function: setOutputEntities
Convert special characters to their HTML equivellent automatically
(only works if the mb_string extension is available).
Parameters:
bOption - (boolean): Convert special characters
Returns:
object - The xajaxResponse object.
*/
function setOutputEntities($bOutputEntities)
{
$this->bOutputEntities = (boolean)$bOutputEntities;
return $this;
}
/*
Function: plugin
Provides access to registered response plugins. If you are using PHP
4 or 5, pass the plugin name as the first argument, the plugin method
name as the segundo argument and subsequent arguments (if any) to be
passed along to the plugin.
Optionally, if you use PHP 5, you can pass just the plugin name as the
first argument and the plugin object will be returned. You can then
access the methods of the plugin directly.
Parameters:
sName - (string): Name of the plugin.
sFunction - (string, optional): The name of the method to call.
arg1...argn - (mixed, optional): Additional arguments to pass on to
the plugin function.
Returns:
object - The plugin specified by sName.
*/
function &plugin()
{
$aArgs = func_get_args();
$nArgs = func_num_args();
//SkipDebug
if (false == (0 < $nArgs)) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:MPERR:01')
, E_USER_ERROR
);
}
//EndSkipDebug
$sName = array_shift($aArgs);
$objPlugin =& $this->objPluginManager->getPlugin($sName);
if (false === $objPlugin)
{
$bReturn = false;
return $bReturn;
}
$objPlugin->setResponse($this);
if (0 < count($aArgs))
{
$sMethod = array_shift($aArgs);
$aFunction = array(&$objPlugin, $sMethod);
call_user_func_array($aFunction, $aArgs);
}
return $objPlugin;
}
/*
Function: __get
Magic function for PHP 5. Used to permit plugins to be called as if they
where native members of the xajaxResponse instance.
Parameters:
sPluginName - (string): The name of the plugin.
Returns:
object - The plugin specified by sPluginName.
*/
function &__get($sPluginName)
{
$objPlugin =& $this->plugin($sPluginName);
return $objPlugin;
}
/*
Function: confirmCommands
Response command that prompts user with [ok] [cancel] style
message box. If the user clicks cancel, the specified
number of response commands following this one, will be
skipped.
Parameters:
iCmdNumber - (integer): The number of commands to skip upon cancel.
sMessage - (string): The message to display to the user.
Returns:
object : The xajaxResponse object.
*/
function confirmCommands($iCmdNumber, $sMessage)
{
return $this->addCommand(
array(
'cmd'=>'cc',
'id'=>$iCmdNumber
),
$sMessage
);
}
/*
Function: assign
Response command indicating that the specified value should be
assigned to the given element's attribute.
Parameters:
sTarget - (string): The id of the html element on the browser.
sAttribute - (string): The property to be assigned.
inicioData - (string): The value to be assigned to the property.
Returns:
object : The <xajaxResponse> object.
*/
function assign($sTarget,$sAttribute,$inicioData)
{
return $this->addCommand(
array(
'cmd'=>'as',
'id'=>$sTarget,
'prop'=>$sAttribute
),
$inicioData
);
}
/*
Function: append
Response command that indicates the specified data should be appended
to the given element's property.
Parameters:
sTarget - (string): The id of the element to be updated.
sAttribute - (string): The name of the property to be appended to.
inicioData - (string): The data to be appended to the property.
Returns:
object : The <xajaxResponse> object.
*/
function append($sTarget,$sAttribute,$inicioData)
{
return $this->addCommand(
array(
'cmd'=>'ap',
'id'=>$sTarget,
'prop'=>$sAttribute
),
$inicioData
);
}
/*
Function: prepend
Response command to prepend the specified value onto the given
element's property.
Parameters:
sTarget - (string): The id of the element to be updated.
sAttribute - (string): The property to be updated.
inicioData - (string): The value to be prepended.
Returns:
object : The <xajaxResponse> object.
*/
function prepend($sTarget,$sAttribute,$inicioData)
{
return $this->addCommand(
array(
'cmd'=>'pp',
'id'=>$sTarget,
'prop'=>$sAttribute
),
$inicioData
);
}
/*
Function: replace
Replace a specified value with another value within the given
element's property.
Parameters:
sTarget - (string): The id of the element to update.
sAttribute - (string): The property to be updated.
sSearch - (string): The needle to search for.
inicioData - (string): The data to use in place of the needle.
*/
function replace($sTarget,$sAttribute,$sSearch,$inicioData)
{
return $this->addCommand(
array(
'cmd'=>'rp',
'id'=>$sTarget,
'prop'=>$sAttribute
),
array(
's' => $sSearch,
'r' => $inicioData
)
);
}
/*
Function: clear
Response command used to clear the specified property of the
given element.
Parameters:
sTarget - (string): The id of the element to be updated.
sAttribute - (string): The property to be clared.
Returns:
object - The <xajaxResponse> object.
*/
function clear($sTarget,$sAttribute)
{
return $this->assign(
$sTarget,
$sAttribute,
''
);
}
/*
Function: contextAssign
Response command used to assign a value to a member of a
javascript object (or element) that is specified by the context
member of the request. The object is referenced using the 'this' keyword
in the sAttribute parameter.
Parameters:
sAttribute - (string): The property to be updated.
inicioData - (string): The value to assign.
Returns:
object : The <xajaxResponse> object.
*/
function contextAssign($sAttribute, $inicioData)
{
return $this->addCommand(
array(
'cmd'=>'c:as',
'prop'=>$sAttribute
),
$inicioData
);
}
/*
Function: contextAppend
Response command used to append a value onto the specified member
of the javascript context object (or element) specified by the context
member of the request. The object is referenced using the 'this' keyword
in the sAttribute parameter.
Parameters:
sAttribute - (string): The member to be appended to.
inicioData - (string): The value to append.
Returns:
object : The <xajaxResponse> object.
*/
function contextAppend($sAttribute, $inicioData)
{
return $this->addCommand(
array(
'cmd'=>'c:ap',
'prop'=>$sAttribute
),
$inicioData
);
}
/*
Function: contextPrepend
Response command used to prepend the speicified data to the given
member of the current javascript object specified by context in the
current request. The object is access via the 'this' keyword in the
sAttribute parameter.
Parameters:
sAttribute - (string): The member to be updated.
inicioData - (string): The value to be prepended.
Returns:
object : The <xajaxResponse> object.
*/
function contextPrepend($sAttribute, $inicioData)
{
return $this->addCommand(
array(
'cmd'=>'c:pp',
'prop'=>$sAttribute
),
$inicioData
);
}
/*
Function: contextClear
Response command used to clear the value of the property specified
in the sAttribute parameter. The member is access via the 'this'
keyword and can be used to update a javascript object specified
by context in the request parameters.
Parameters:
sAttribute - (string): The member to be cleared.
Returns:
object : The <xajaxResponse> object.
*/
function contextClear($sAttribute)
{
return $this->contextAssign(
$sAttribute,
''
);
}
/*
Function: alert
Response command that is used to display an alert message to the user.
Parameters:
sMsg - (string): The message to be displayed.
Returns:
object : The <xajaxResponse> object.
*/
function alert($sMsg)
{
return $this->addCommand(
array(
'cmd'=>'al'
),
$sMsg
);
}
function debug($sMessage)
{
return $this->addCommand(
array(
'cmd'=>'dbg'
),
$sMessage
);
}
/*
Function: redirect
Response command that causes the browser to navigate to the specified
URL.
Parameters:
sURL - (string): The relative or fully qualified URL.
iDelay - (integer, optional): Number of segundos to delay before
the redirect occurs.
Returns:
object : The <xajaxResponse> object.
*/
function redirect($sURL, $iDelay=0)
{
//we need to parse the query part so that the values are rawurlencode()'ed
//can't just use parse_url() cos we could be dealing with a relative URL which
// parse_url() can't deal with.
$queryStart = strpos($sURL, '?', strrpos($sURL, '/'));
if ($queryStart !== FALSE)
{
$queryStart++;
$queryEnd = strpos($sURL, '#', $queryStart);
if ($queryEnd === FALSE)
$queryEnd = strlen($sURL);
$queryPart = substr($sURL, $queryStart, $queryEnd-$queryStart);
parse_str($queryPart, $queryParts);
$newQueryPart = "";
if ($queryParts)
{
$first = true;
foreach($queryParts as $key => $value)
{
if ($first)
$first = false;
else
$newQueryPart .= '&';
$newQueryPart .= rawurlencode($key).'='.rawurlencode($value);
}
} else if ($_SERVER['QUERY_STRING']) {
//couldn't break up the query, but there's one there
//possibly "http://url/page.html?query1234" type of query?
//just encode it and hope it works
$newQueryPart = rawurlencode(previnirXSS($_SERVER['QUERY_STRING']));
}
$sURL = str_replace($queryPart, $newQueryPart, $sURL);
}
if ($iDelay)
$this->script(
'window.setTimeout("window.location = \''
. $sURL
. '\';",'
. ($iDelay*1000)
. ');'
);
else
$this->script(
'window.location = "'
. $sURL
. '";'
);
return $this;
}
/*
Function: script
Response command that is used to execute a portion of javascript on
the browser. The script runs in it's own context, so variables declared
locally, using the 'var' keyword, will no longer be available after the
call. To construct a variable that will be accessable globally, even
after the script has executed, leave off the 'var' keyword.
Parameters:
sJS - (string): The script to execute.
Returns:
object : The <xajaxResponse> object.
*/
function script($sJS)
{
return $this->addCommand(
array(
'cmd'=>'js'
),
$sJS
);
}
/*
Function: call
Response command that indicates that the specified javascript
function should be called with the given (optional) parameters.
Parameters:
arg1 - (string): The name of the function to call.
arg2 .. argn : arguments to be passed to the function.
Returns:
object : The <xajaxResponse> object.
*/
function call() {
$aArgs = func_get_args();
$sFunc = array_shift($aArgs);
return $this->addCommand(
array(
'cmd'=>'jc',
'func'=>$sFunc
),
$aArgs
);
}
/*
Function: remove
Response command used to remove an element from the document.
Parameters:
sTarget - (string): The id of the element to be removed.
Returns:
object : The <xajaxResponse> object.
*/
function remove($sTarget)
{
return $this->addCommand(
array(
'cmd'=>'rm',
'id'=>$sTarget),
''
);
}
/*
Function: create
Response command used to create a new element on the browser.
Parameters:
sParent - (string): The id of the parent element.
sTag - (string): The tag name to be used for the new element.
sId - (string): The id to assign to the new element.
sType - (string, optional): The type of tag, deprecated, use
<xajaxResponse->createInput> instead.
Returns:
object : The <xajaxResponse> object.
*/
function create($sParent, $sTag, $sId, $sType=null)
{
//SkipDebug
if (false === (null === $sType)) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:CPERR:01')
, E_USER_WARNING
);
}
//EndSkipDebug
return $this->addCommand(
array(
'cmd'=>'ce',
'id'=>$sParent,
'prop'=>$sId
),
$sTag
);
}
/*
Function: insert
Response command used to insert a new element just prior to the specified
element.
Parameters:
sBefore - (string): The element used as a reference point for the
insertion.
sTag - (string): The tag to be used for the new element.
sId - (string): The id to be used for the new element.
Returns:
object : The <xajaxResponse> object.
*/
function insert($sBefore, $sTag, $sId)
{
return $this->addCommand(
array(
'cmd'=>'ie',
'id'=>$sBefore,
'prop'=>$sId
),
$sTag
);
}
/*
Function: insertAfter
Response command used to insert a new element after the specified
one.
Parameters:
sAfter - (string): The id of the element that will be used as a reference
for the insertion.
sTag - (string): The tag name to be used for the new element.
sId - (string): The id to be used for the new element.
Returns:
object : The <xajaxResponse> object.
*/
function insertAfter($sAfter, $sTag, $sId)
{
return $this->addCommand(
array(
'cmd'=>'ia',
'id'=>$sAfter,
'prop'=>$sId
),
$sTag
);
}
/*
Function: createInput
Response command used to create an input element on the browser.
Parameters:
sParent - (string): The id of the parent element.
sType - (string): The type of the new input element.
sName - (string): The name of the new input element.
sId - (string): The id of the new element.
Returns:
object : The <xajaxResponse> object.
*/
function createInput($sParent, $sType, $sName, $sId)
{
return $this->addCommand(
array(
'cmd'=>'ci',
'id'=>$sParent,
'prop'=>$sId,
'type'=>$sType
),
$sName
);
}
/*
Function: insertInput
Response command used to insert a new input element preceeding the
specified element.
Parameters:
sBefore - (string): The id of the element to be used as the reference
point for the insertion.
sType - (string): The type of the new input element.
sName - (string): The name of the new input element.
sId - (string): The id of the new input element.
Returns:
object : The <xajaxResponse> object.
*/
function insertInput($sBefore, $sType, $sName, $sId)
{
return $this->addCommand(
array(
'cmd'=>'ii',
'id'=>$sBefore,
'prop'=>$sId,
'type'=>$sType
),
$sName
);
}
/*
Function: insertInputAfter
Response command used to insert a new input element after the
specified element.
Parameters:
sAfter - (string): The id of the element that is to be used
as the insertion point for the new element.
sType - (string): The type of the new input element.
sName - (string): The name of the new input element.
sId - (string): The id of the new input element.
Returns:
object : The <xajaxResponse> object.
*/
function insertInputAfter($sAfter, $sType, $sName, $sId)
{
return $this->addCommand(
array(
'cmd'=>'iia',
'id'=>$sAfter,
'prop'=>$sId,
'type'=>$sType
),
$sName
);
}
/*
Function: setEvent
Response command used to set an event handler on the browser.
Parameters:
sTarget - (string): The id of the element that contains the event.
sEvent - (string): The name of the event.
sScript - (string): The javascript to execute when the event is fired.
Returns:
object : The <xajaxResponse> object.
*/
function setEvent($sTarget,$sEvent,$sScript)
{
return $this->addCommand(
array(
'cmd'=>'ev',
'id'=>$sTarget,
'prop'=>$sEvent
),
$sScript
);
}
/*
Function: addEvent
Response command used to set an event handler on the browser.
Parameters:
sTarget - (string): The id of the element that contains the event.
sEvent - (string): The name of the event.
sScript - (string): The javascript to execute when the event is fired.
Returns:
object : The <xajaxResponse> object.
Note:
This function is depreciated and will be removed in a future version.
Use <setEvent> instead.
*/
function addEvent($sTarget,$sEvent,$sScript)
{
return $this->setEvent(
$sTarget,
$sEvent,
$sScript
);
}
/*
Function: addHandler
Response command used to install an event handler on the specified element.
Parameters:
sTarget - (string): The id of the element.
sEvent - (string): The name of the event to add the handler to.
sHandler - (string): The javascript function to call when the event is fired.
You can add more than one event handler to an element's event using this method.
Returns:
object - The <xajaxResponse> object.
*/
function addHandler($sTarget,$sEvent,$sHandler)
{
return $this->addCommand(
array(
'cmd'=>'ah',
'id'=>$sTarget,
'prop'=>$sEvent
),
$sHandler
);
}
/*
Function: removeHandler
Response command used to remove an event handler from an element.
Parameters:
sTarget - (string): The id of the element.
sEvent - (string): The name of the event.
sHandler - (string): The javascript function that is called when the
event is fired.
Returns:
object : The <xajaxResponse> object.
*/
function removeHandler($sTarget,$sEvent,$sHandler)
{
return $this->addCommand(
array(
'cmd'=>'rh',
'id'=>$sTarget,
'prop'=>$sEvent
),
$sHandler);
}
/*
Function: setFunction
Response command used to construct a javascript function on the browser.
Parameters:
sFunction - (string): The name of the function to construct.
sArgs - (string): Comma separated list of parameter names.
sScript - (string): The javascript code that will become the body of the
function.
Returns:
object : The <xajaxResponse> object.
*/
function setFunction($sFunction, $sArgs, $sScript)
{
return $this->addCommand(
array(
'cmd'=>'sf',
'func'=>$sFunction,
'prop'=>$sArgs
),
$sScript
);
}
/*
Function: wrapFunction
Response command used to construct a wrapper function around
and existing javascript function on the browser.
Parameters:
sFunction - (string): The name of the existing function to wrap.
sArgs - (string): The comma separated list of parameters for the function.
aScripts - (array): An array of javascript code snippets that will
be used to build the body of the function. The first piece of code
specified in the array will occur before the call to the original
function, the segundo will occur after the original function is called.
sReturnValueVariable - (string): The name of the variable that will
retain the return value from the call to the original function.
Returns:
object : The <xajaxResponse> object.
*/
function wrapFunction($sFunction, $sArgs, $aScripts, $sReturnValueVariable)
{
return $this->addCommand(
array(
'cmd'=>'wpf',
'func'=>$sFunction,
'prop'=>$sArgs,
'type'=>$sReturnValueVariable
),
$aScripts
);
}
/*
Function: includeScript
Response command used to load a javascript file on the browser.
Parameters:
sFileName - (string): The relative or fully qualified URI of the
javascript file.
sType - (string): Determines the script type . Defaults to 'text/javascript'.
Returns:
object : The <xajaxResponse> object.
*/
function includeScript($sFileName, $sType = null, $sId = null)
{
$command = array('cmd' => 'in');
if (false === (null === $sType))
$command['type'] = $sType;
if (false === (null === $sId))
$command['elm_id'] = $sId;
return $this->addCommand(
$command,
$sFileName
);
}
/*
Function: includeScriptOnce
Response command used to include a javascript file on the browser
if it has not already been loaded.
Parameters:
sFileName - (string): The relative for fully qualified URI of the
javascript file.
sType - (string): Determines the script type . Defaults to 'text/javascript'.
Returns:
object : The <xajaxResponse> object.
*/
function includeScriptOnce($sFileName, $sType = null, $sId = null)
{
$command = array('cmd' => 'ino');
if (false === (null === $sType))
$command['type'] = $sType;
if (false === (null === $sId))
$command['elm_id'] = $sId;
return $this->addCommand(
$command,
$sFileName
);
}
/*
Function: removeScript
Response command used to remove a SCRIPT reference to a javascript
file on the browser. Optionally, you can call a javascript function
just prior to the file being unloaded (for cleanup).
Parameters:
sFileName - (string): The relative or fully qualified URI of the
javascript file.
sUnload - (string): Name of a javascript function to call prior
to unlaoding the file.
Returns:
object : The <xajaxResponse> object.
*/
function removeScript($sFileName, $sUnload = '') {
$this->addCommand(
array(
'cmd'=>'rjs',
'unld'=>$sUnload
),
$sFileName
);
return $this;
}
/*
Function: includeCSS
Response command used to include a LINK reference to
the specified CSS file on the browser. This will cause the
browser to load and apply the style sheet.
Parameters:
sFileName - (string): The relative or fully qualified URI of
the css file.
sMedia - (string): Determines the media type of the CSS file. Defaults to 'screen'.
Returns:
object : The <xajaxResponse> object.
*/
function includeCSS($sFileName, $sMedia = null)
{
$command = array('cmd' => 'css');
if (false === (null === $sMedia))
$command['media'] = $sMedia;
return $this->addCommand(
$command,
$sFileName
);
}
/*
Function: removeCSS
Response command used to remove a LINK reference to
a CSS file on the browser. This causes the browser to
unload the style sheet, effectively removing the style
changes it caused.
Parameters:
sFileName - (string): The relative or fully qualified URI
of the css file.
Returns:
object : The <xajaxResponse> object.
*/
function removeCSS($sFileName, $sMedia = null)
{
$command = array('cmd'=>'rcss');
if (false === (null === $sMedia))
$command['media'] = $sMedia;
return $this->addCommand(
$command,
$sFileName
);
}
/*
Function: waitForCSS
Response command instructing xajax to pause while the CSS
files are loaded. The browser is not typically a multi-threading
application, with regards to javascript code. Therefore, the
CSS files included or removed with <xajaxResponse->includeCSS> and
<xajaxResponse->removeCSS> respectively, will not be loaded or
removed until the browser regains control from the script. This
command returns control back to the browser and pauses the execution
of the response until the CSS files, included previously, are
loaded.
Parameters:
iTimeout - (integer): The number of 1/10ths of a segundo to pause
before timing out and continuing with the execution of the
response commands.
Returns:
object : The <xajaxResponse> object.
*/
function waitForCSS($iTimeout = 600) {
$inicioData = "";
$this->addCommand(
array(
'cmd'=>'wcss',
'prop'=>$iTimeout
),
$inicioData
);
return $this;
}
/*
Function: waitFor
Response command instructing xajax to delay execution of the response
commands until a specified condition is met. Note, this returns control
to the browser, so that other script operations can execute. xajax
will continue to monitor the specified condition and, when it evaulates
to true, will continue processing response commands.
Parameters:
script - (string): A piece of javascript code that evaulates to true
or false.
tenths - (integer): The number of 1/10ths of a segundo to wait before
timing out and continuing with the execution of the response
commands.
Returns:
object : The <xajaxResponse> object.
*/
function waitFor($script, $tenths) {
return $this->addCommand(
array(
'cmd'=>'wf',
'prop'=>$tenths
),
$script
);
}
/*
Function: sleep
Response command which instructs xajax to pause execution
of the response commands, returning control to the browser
so it can perform other commands asynchronously. After
the specified delay, xajax will continue execution of the
response commands.
Parameters:
tenths - (integer): The number of 1/10ths of a segundo to
sleep.
Returns:
object : The <xajaxResponse> object.
*/
function sleep($tenths) {
$this->addCommand(
array(
'cmd'=>'s',
'prop'=>$tenths
),
''
);
return $this;
}
/*
Function: setReturnValue
Stores a value that will be passed back as part of the response.
When making synchronous requests, the calling javascript can
obtain this value immediately as the return value of the
<xajax.call> function.
Parameters:
value - (mixed): Any value.
Returns:
object : The <xajaxResponse> object.
*/
function setReturnValue($value) {
$this->returnValue = $this->_encodeArray($value);
return $this;
}
/*
Function: getContentType
Returns the current content type that will be used for the
response packet. (typically: "text/xml")
Returns:
string : The content type.
*/
function getContentType()
{
return 'text/xml';
}
/*
Function: getOutput
*/
function getOutput()
{
ob_start();
$this->_printHeader_XML();
$this->_printResponse_XML();
return ob_get_clean();
}
/*
Function: printOutput
Prints the output, generated from the commands added to the response,
that will be sent to the browser.
Returns:
string : The textual representation of the response commands.
*/
function printOutput()
{
$this->_sendHeaders();
$this->_printHeader_XML();
$this->_printResponse_XML();
}
/*
Function: _sendHeaders
Used internally to generate the response headers.
*/
function _sendHeaders()
{
@$objArgumentManager =& xajaxArgumentManager::getInstance();
if (XAJAX_METHOD_GET == $objArgumentManager->getRequestMethod())
{
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
}
$sCharacterSet = '';
if ($this->sCharacterEncoding && 0 < strlen(trim($this->sCharacterEncoding))) {
$sCharacterSet = '; charset="' . trim($this->sCharacterEncoding) . '"';
}
$sContentType = $this->getContentType();
header('content-type: ' . $sContentType . ' ' . $sCharacterSet);
}
/*
Function: getCommandCount
Returns:
integer : The number of commands in the response.
*/
function getCommandCount()
{
return count($this->aCommands);
}
/*
Function: loadCommands
Merges the response commands from the specified <xajaxResponse>
object with the response commands in this <xajaxResponse> object.
Parameters:
mCommands - (object): <xajaxResponse> object.
bBefore - (boolean): Add the new commands to the beginning
of the list.
*/
function loadCommands($mCommands, $bBefore=false)
{
if (is_a($mCommands, 'xajaxResponse')) {
$this->returnValue = $mCommands->returnValue;
if ($bBefore) {
$this->aCommands = array_merge($mCommands->aCommands, $this->aCommands);
}
else {
$this->aCommands = array_merge($this->aCommands, $mCommands->aCommands);
}
}
else if (is_array($mCommands)) {
if ($bBefore) {
$this->aCommands = array_merge($mCommands, $this->aCommands);
}
else {
$this->aCommands = array_merge($this->aCommands, $mCommands);
}
}
else {
//SkipDebug
if (!empty($mCommands)) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:LCERR:01')
, E_USER_ERROR
);
}
//EndSkipDebug
}
}
function absorb($objResponse)
{
$this->loadCommands($objResponse);
}
/*
Function: addPluginCommand
Adds a response command that is generated by a plugin.
Parameters:
objPlugin - (object): A reference to a plugin object.
aAttributes - (array): Array containing the attributes for this
response command.
mData - (mixed): The data to be sent with this command.
Returns:
object : The <xajaxResponse> object.
*/
function addPluginCommand($objPlugin, $aAttributes, $mData)
{
$aAttributes['plg'] = $objPlugin->getName();
return $this->addCommand($aAttributes, $mData);
}
/*
Function: addCommand
Add a response command to the array of commands that will
be sent to the browser.
Parameters:
aAttributes - (array): Associative array of attributes that
will describe the command.
mData - (mixed): The data to be associated with this command.
Returns:
object : The <xajaxResponse> command.
*/
function addCommand($aAttributes, $mData)
{
$aAttributes['data'] = $this->_encodeArray($mData);
$this->aCommands[] = $aAttributes;
return $this;
}
/*
Function: _printHeader_XML
Used internally to print XML start tag.
*/
function _printHeader_XML()
{
echo '<';
echo '?';
echo 'xml version="1.0"';
$sEncoding = trim($this->sCharacterEncoding);
if ($this->sCharacterEncoding && 0 < strlen($sEncoding)) {
echo ' encoding="';
echo $sEncoding;
echo '"';
}
echo ' ?';
echo '>';
}
/*
Function: _printResponse_XML
Used internally to generate the command output.
*/
function _printResponse_XML()
{
echo '<';
echo 'xjx>';
if (null !== $this->returnValue)
{
echo '<';
echo 'xjxrv>';
$this->_printArray_XML($this->returnValue);
echo '<';
echo '/xjxrv>';
}
foreach(array_keys($this->aCommands) as $sKey)
$this->_printCommand_XML($this->aCommands[$sKey]);
echo '<';
echo '/xjx>';
}
/*
Function: _printCommand_XML
Prints an XML representation of the command.
Parameters:
aAttributes - (array): Associative array of attributes for this
command.
*/
function _printCommand_XML(&$aAttributes)
{
echo '<';
echo 'cmd';
$mData = '';
foreach (array_keys($aAttributes) as $sKey) {
if ($sKey) {
if ('data' != $sKey) {
echo ' ';
echo $sKey;
echo '="';
echo $aAttributes[$sKey];
echo '"';
} else
$mData =& $aAttributes[$sKey];
}
}
echo '>';
$this->_printArray_XML($mData);
echo '<';
echo '/cmd>';
}
/*
Function: _printArray_XML
Prints an XML representation of a php array suitable
for inclusion in the response to the browser. Arrays
sent via this method will be converted into a javascript
array on the browser.
Parameters:
mArray - (array): Array to be converted.
*/
function _printArray_XML(&$mArray) {
if ('object' == gettype($mArray))
$mArray = get_object_vars($mArray);
if (false == is_array($mArray)) {
$this->_printEscapedString_XML($mArray);
return;
}
echo '<';
echo 'xjxobj>';
foreach (array_keys($mArray) as $sKey) {
if (is_array($mArray[$sKey])) {
echo '<';
echo 'e>';
foreach (array_keys($mArray[$sKey]) as $sInnerKey) {
//SkipDebug
if (htmlspecialchars($sInnerKey, ENT_COMPAT, 'UTF-8') != $sInnerKey) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:AKERR:01')
, E_USER_ERROR
);
}
//EndSkipDebug
if ('k' == $sInnerKey || 'v' == $sInnerKey) {
echo '<';
echo $sInnerKey;
echo '>';
$this->_printArray_XML($mArray[$sKey][$sInnerKey]);
echo '<';
echo '/';
echo $sInnerKey;
echo '>';
} else {
//SkipDebug
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:IEAERR:01')
, E_USER_ERROR
);
//EndSkipDebug
}
}
echo '<';
echo '/e>';
} else {
//SkipDebug
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:NEAERR:01')
, E_USER_ERROR
);
//EndSkipDebug
}
}
echo '<';
echo '/xjxobj>';
}
/*
Function: _printEscapedString_XML
Escape the specified data if necessary, so special characters in the
command data does not interfere with the structure of the response.
This could be overridden to allow for transport encodings other than
XML.
Parameters:
inicioData - (string): The data to be escaped.
Returns:
string : The escaped data.
*/
function _printEscapedString_XML(&$inicioData)
{
if (is_null($inicioData) || false == isset($inicioData)) {
echo '*';
return;
}
if ($this->bOutputEntities) {
//SkipDebug
if (false === function_exists('mb_convert_encoding')) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:MBEERR:01')
, E_USER_NOTICE
);
}
//EndSkipDebug
echo call_user_func_array('mb_convert_encoding', array(&$inicioData, 'HTML-ENTITIES', $this->sCharacterEncoding));
return;
}
$nCDATA = 0;
$bNoOpenCDATA = (false === strpos($inicioData, '<'.'![CDATA['));
if ($bNoOpenCDATA) {
$bNoCloseCDATA = (false === strpos($inicioData, ']]>'));
if ($bNoCloseCDATA) {
$bSpecialChars = (htmlspecialchars($inicioData, ENT_COMPAT, 'UTF-8') != $inicioData);
if ($bSpecialChars)
$nCDATA = 1;
} else
$nCDATA = 2;
} else
$nCDATA = 2;
if (0 < $nCDATA) {
echo '<';
echo '![CDATA[';
// PHP defines numeric values as integer or float (double and real are aliases of float)
if (is_string($inicioData)) {
echo 'S';
} else if (is_int($inicioData) || is_float($inicioData)) {
echo 'N';
} else if (is_bool($inicioData)) {
echo 'B';
}
if (1 < $nCDATA) {
$aSegments = explode('<'.'![CDATA[', $inicioData);
$aOutput = array();
$nOutput = 0;
foreach (array_keys($aSegments) as $keySegment) {
$aFragments = explode(']]>', $aSegments[$keySegment]);
$aStack = array();
$nStack = 0;
foreach (array_keys($aFragments) as $keyFragment) {
if (0 < $nStack)
array_push($aStack, ']]]]><', '![CDATA[>', $aFragments[$keyFragment]);
else
$aStack[] = $aFragments[$keyFragment];
++$nStack;
}
if (0 < $nOutput)
array_push($aOutput, '<', '![]]><', '![CDATA[CDATA[', implode('', $aStack));
else
$aOutput[] = implode('', $aStack);
++$nOutput;
}
echo implode('', $aOutput);
} else
echo $inicioData;
echo ']]>';
} else {
if (is_string($inicioData)) {
echo 'S';
} else if (is_int($inicioData) || is_float($inicioData)) {
echo 'N';
} else if (is_bool($inicioData)) {
echo 'B';
}
echo $inicioData;
}
}
/*
Function: _encodeArray
Recursively serializes a data structure in an array so that it can
be sent to the browser. This can be thought of as the opposite of
<xajaxRequestProcessorPlugin->_parseObjXml>.
Parameters:
mData - (mixed): The data to be evaluated.
Returns:
mixed : The object constructed from the data.
*/
function _encodeArray(&$mData) {
if ('object' === gettype($mData))
$mData = get_object_vars($mData);
if (false === is_array($mData))
return $mData;
$aData = array();
foreach (array_keys($mData) as $sKey)
$aData[] = array(
// key does not need to be encoded
'k'=>$sKey,
'v'=>$this->_encodeArray($mData[$sKey])
);
return $aData;
}
}// end class xajaxResponse
class xajaxCustomResponse
{
var $sOutput;
var $sContentType;
var $sCharacterEncoding;
var $bOutputEntities;
function xajaxCustomResponse($sContentType)
{
$this->sOutput = '';
$this->sContentType = $sContentType;
@$objResponseManager =& xajaxResponseManager::getInstance();
$this->sCharacterEncoding = $objResponseManager->getCharacterEncoding();
$this->bOutputEntities = $objResponseManager->getOutputEntities();
}
function setCharacterEncoding($sCharacterEncoding)
{
$this->sCharacterEncoding = $sCharacterEncoding;
}
function setOutputEntities($bOutputEntities)
{
$this->bOutputEntities = $bOutputEntities;
}
function clear()
{
$this->sOutput = '';
}
function append($sOutput)
{
$this->sOutput .= $sOutput;
}
function absorb($objResponse)
{
//SkipDebug
if (false == is_a($objResponse, 'xajaxCustomResponse')) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:MXRTERR')
, E_USER_ERROR
);
}
if ($objResponse->getContentType() != $this->getContentType()) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:MXCTERR')
, E_USER_ERROR
);
}
if ($objResponse->getCharacterEncoding() != $this->getCharacterEncoding()) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:MXCEERR')
, E_USER_ERROR
);
}
if ($objResponse->getOutputEntities() != $this->getOutputEntities()) {
$objLanguageManager =& xajaxLanguageManager::getInstance();
trigger_error(
$objLanguageManager->getText('XJXRSP:MXOEERR')
, E_USER_ERROR
);
}
//EndSkipDebug
$this->sOutput .= $objResponse->getOutput();
}
function getContentType()
{
return $this->sContentType;
}
function getCharacterEncoding()
{
return $this->sCharacterEncoding;
}
function getOutputEntities()
{
return $this->bOutputEntities;
}
function getOutput()
{
return $this->sOutput;
}
function printOutput()
{
$sContentType = $this->sContentType;
$sCharacterSet = $this->sCharacterEncoding;
header("content-type: {$sContentType}; charset={$sCharacterSet}");
echo $this->sOutput;
}
}