cpaint2.inc.php
24.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
<?php
/**
* CPAINT - Cross-Platform Asynchronous INterface Toolkit
*
* http://sf.net/projects/cpaint
*
* released under the terms of the LGPL
* see http://www.fsf.org/licensing/licenses/lgpl.txt for details
*
* @package CPAINT
* @author Paul Sullivan <wiley14@gmail.com>
* @author Dominique Stender <dstender@st-webdevelopment.de>
* @copyright Copyright (c) 2005-2006 Paul Sullivan, Dominique Stender - http://sf.net/projects/cpaint
* @version 2.0.3
*/
//---- includes ----------------------------------------------------------------
/**
* @include JSON
*/
require_once(dirname(__FILE__) . '/json.php');
/**
* @include config
*/
require_once("cpaint2.config.php");
//---- variables ---------------------------------------------------------------
$GLOBALS['__cpaint_json'] = new JSON();
//---- error reporting ---------------------------------------------------------
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
//---- classes -----------------------------------------------------------------
/**
* cpaint base class.
*
* @package CPAINT
* @access public
* @author Paul Sullivan <wiley14@gmail.com>
* @author Dominique Stender <dstender@st-webdevelopment.de>
* @copyright Copyright (c) 2005-2006 Paul Sullivan, Dominique Stender - http://sf.net/projects/cpaint
* @version 2.0.3
*/
class cpaint {
/**
* version number
*
* @access private
* @var string $version
*/
var $version = '2.0.3';
/**
* response type.
*
* @access protected
* @var string $response_type
*/
var $response_type;
/**
* the basenode ajaxResponse.
*
* @access protected
* @var object $basenode
*/
var $basenode;
/**
* list of registered methods available through the CPAINT API
*
* @access protected
* @var array $api_functions
*/
var $api_functions;
/**
* list of registered complex types used in the CPAINT API
*
* @access protected
* @var array $api_datatypes
*/
var $api_datatypes;
/**
* whether or not the CPAINT API generates a WSDL when called with ?wsdl querystring
*
* @access private
* @var boolean $use_wsdl
*/
var $use_wsdl;
/**
* PHP4 constructor.
*
* @access public
* @return void
*/
function cpaint() {
$this->__construct();
}
/**
* PHP 5 constructor.
*
* @access public
* @return void
* -o"Dominique Stender" -ccpaint implement a better debugging
*/
function __construct() {
// initialize properties
$this->basenode = new cpaint_node();
$this->basenode->set_name('ajaxResponse');
$this->basenode->set_attribute('id', '');
$this->basenode->set_encoding('UTF-8');
$this->response_type = 'TEXT';
$this->api_functions = array();
$this->api_datatypes = array();
$this->use_wsdl = true;
$this->complex_type(array(
'name' => 'cpaintResponseType',
'type' => 'restriction', // (restriction|complex|list)
'base_type' => 'string', // scalar type of all values, e.g. 'string', for type = (restriction|list) only
'values' => array( // for type = 'restriction' only: list of allowed values
'XML', 'TEXT', 'OBJECT', 'E4X', 'JSON',
),
)
);
$this->complex_type(array(
'name' => 'cpaintDebugLevel',
'type' => 'restriction',
'base_type' => 'long',
'values' => array(
-1, 0, 1, 2
),
)
);
$this->complex_type(array(
'name' => 'cpaintDebugMessage',
'type' => 'list',
'base_type' => 'string',
)
);
$this->complex_type(array(
'name' => 'cpaintRequestHead',
'type' => 'complex',
'struct' => array(
0 => array('name' => 'functionName', 'type' => 'string'),
1 => array('name' => 'responseType', 'type' => 'cpaintResponseType'),
2 => array('name' => 'debugLevel', 'type' => 'cpaintDebugLevel'),
),
)
);
$this->complex_type(array(
'name' => 'cpaintResponseHead',
'type' => 'complex',
'struct' => array(
0 => array('name' => 'success', 'type' => 'boolean'),
1 => array('name' => 'debugger', 'type' => 'cpaintDebugMessage'),
),
)
);
// determine response type
if (isset($_REQUEST['cpaint_response_type'])) {
$this->response_type = htmlentities(strip_tags(strtoupper((string) $_REQUEST['cpaint_response_type'])));
} // end: if
}
/**
* calls the user function responsible for this specific call.
*
* @access public
* @param string $input_encoding input data character encoding, default is UTF-8
* @return void
*/
function start($input_encoding = 'UTF-8') {
$user_function = '';
$arguments = array();
// work only if there is no API version request
if (!isset($_REQUEST['api_query'])
&& !isset($_REQUEST['wsdl'])) {
$this->basenode->set_encoding($input_encoding);
if ($_REQUEST['cpaint_function'] != '') {
$user_function = $_REQUEST['cpaint_function'];
if(@$_REQUEST['cpaint_argument'])
$arguments = $_REQUEST['cpaint_argument'];
else
$arguments = array();
}
// perform character conversion on every argument
foreach ($arguments as $key => $value) {
if (get_magic_quotes_gpc() == true) {
$value = stripslashes($value);
} // end: if
// convert from JSON string
// var_dump($GLOBALS['__cpaint_json']);
$arguments[$key] = $GLOBALS['__cpaint_json']->parse($value);
} // end: foreach
$arguments = cpaint_transformer::decode_array($arguments, $this->basenode->get_encoding());
//var_dump($arguments);
if (is_array($this->api_functions[$user_function])
&& is_callable($this->api_functions[$user_function]['call'])) {
// a valid API function is to be called
call_user_func_array($this->api_functions[$user_function]['call'], $arguments);
} else if ($user_function != '') {
// desired function is not registered as API function
$this->basenode->set_data('[CPAINT] A function name was passed that is not allowed to execute on this server.');
}
} // end: if
}
/**
* generates and prints the response based on response type supplied by the frontend.
*
* @access public
* @return void
*/
function return_data() {
error_reporting(0);
// send appropriate headers to avoid caching
header('Expires: Fri, 14 Mar 1980 20:53: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');
header('X-Powered-By: CPAINT v' . $this->version . '/PHP v' . phpversion());
// work only if there is no API version request
if (!isset($_REQUEST['api_query'])
&& !isset($_REQUEST['wsdl'])) {
// trigger generation of response
switch (trim($this->response_type)) {
case 'TEXT':
header('Content-type: text/plain; charset=' . cpaint_transformer::find_output_charset($this->basenode->get_encoding()));
echo cpaint_transformer::toString($this->basenode);
break;
case 'JSON':
header('Content-type: text/plain; charset=' . cpaint_transformer::find_output_charset($this->basenode->get_encoding()));
echo cpaint_transformer::toJSON($this->basenode);
break;
case 'OBJECT':
case 'E4X':
case 'XML':
header('Content-type: text/xml; charset=' . cpaint_transformer::find_output_charset($this->basenode->get_encoding()));
echo '<?xml version="1.0" encoding="' . cpaint_transformer::find_output_charset($this->basenode->get_encoding()) . '"?>'
. cpaint_transformer::toXML($this->basenode);
break;
default:
echo 'ERROR: invalid response type \'' . $this->response_type . '\'';
} // end: switch
} elseif (isset($_REQUEST['api_query'])) {
// API version request
header('Content-type: text/plain; charset=ISO-8859-1');
echo 'CPAINT v' . $this->version . '/PHP v' . phpversion();
} elseif ($this->use_wsdl == true
&& isset($_REQUEST['wsdl'])) {
if (is_file(dirname(__FILE__) . '/cpaint2.wsdl.php')
&& is_readable(dirname(__FILE__) . '/cpaint2.wsdl.php')) {
require_once(dirname(__FILE__) . '/cpaint2.wsdl.php');
if (class_exists('cpaint_wsdl')) {
// create new instance of WSDL library
$wsdl = new cpaint_wsdl();
// build WSDL info
header('Content-type: text/xml; charset=UTF-8');
echo $wsdl->generate($this->api_functions, $this->api_datatypes);
} else {
header('Content-type: text/plain; charset=ISO-8859-1');
echo 'WSDL generator is unavailable';
} // end: if
} else {
header('Content-type: text/plain; charset=ISO-8859-1');
echo 'WSDL generator is unavailable';
} // end: if
} // end: if
}
/**
* registers a new function or method as part of the CPAINT API
*
* @access public
* @param mixed $func function name, array(&$object, 'function_name') or array('class', 'function_name')
* @param array $input function input parameters (not yet used by CPAINT and subject to change)
* @param array $output function output format (not yed used by CPAINT and subject to change)
* @param string $comment description of the functionality
* @return boolean
*/
function register($func, $input = array(), $output = array(), $comment = '') {
$return_value = false;
$input = (array) $input;
$output = (array) $output;
$comment = (string) $comment;
if (is_array($func)
&& (is_object($func[0]) || is_string($func[0]))
&& is_string($func[1])
&& is_callable($func)) {
// calling a method of an object
$this->api_functions[$func[1]] = array(
'call' => $func,
'input' => $input,
'output' => $output,
'comment' => $comment,
);
$return_value = true;
} elseif (is_string($func)) {
// calling a standalone function
$this->api_functions[$func] = array(
'call' => $func,
'input' => $input,
'output' => $output,
'comment' => $comment,
);
$return_value = true;
} // end: if
return $return_value;
}
/**
* unregisters a function that is currently part of the CPAINT API.
*
* proves useful when the same set of functions is to be used in the
* frontend and in some kind of administration environment. you might
* want to unregister a few (admin) functions for the frontend in this
* case.
*
* @access public
* @param string $func function name
* @return boolean
*/
function unregister($func) {
$retval = false;
if (is_array($this->api_functions[$func])) {
unset($this->api_functions[$func]);
} // end: if
return $retval;
}
/**
* registers a complex data type
*
* @access public
* @param array $schema schema definition for the complex type
* @return boolean
*/
function complex_type($schema) {
$return_value = false;
$schema = (array) $schema;
if ($schema['name'] != ''
&& in_array($schema['type'], array('restriction', 'complex', 'list'))) {
$this->api_datatypes[] = $schema;
$return_value = true;
} // end: if
return $return_value;
}
/**
* switches the generation of WSDL on/off. default is on
*
* @access public
* @param boolean $state state of WSDL generation
* @return void
*/
function use_wsdl($state) {
$this->use_wsdl = (boolean) $state;
}
/**
* adds a new subnode to the basenode.
*
* will return a reference to it for further processing.
*
* @access public
* @param string $nodename name of the new node
* @param string $id id of the new node
* @return object
*/
function &add_node($nodename, $id = '') {
return $this->basenode->add_node($nodename, $id);
}
/**
* assigns textual data to the basenode.
*
* @access public
* @param mixed $data data to assign to this node
* @return void
*/
function set_data($data) {
$this->basenode->set_data($data);
}
/**
* returns the data assigned to the basenode.
*
* @access public
* @return mixed
*/
function get_data() {
return $this->basenode->get_data();
}
/**
* sets the id property of the basenode.
*
* @deprecated deprecated since version 2.0.0
* @access public
* @param string $id the id
* @return void
*/
function set_id($id) {
$this->basenode->set_attribute('id', $id);
}
/**
* gets the id property of the basenode.
*
* @deprecated deprecated since version 2.0.0
* @access public
* @return string
*/
function get_id() {
return $this->basenode->get_attribute('id');
}
/**
* adds a new attribute to the basenode.
*
* @access public
* @param string $name attribute name
* @param mixed $value attribute value
* @return void
*/
function set_attribute($name, $value) {
$this->basenode->set_attribute($name, $value);
}
/**
* retrieves an attribute of the basenode by name.
*
* @access public
* @param string $name attribute name
* @return string
*/
function get_attribute($name) {
return $this->basenode->get_attributes($name);
}
/**
* set name property of the basenode.
*
* @access public
* @param string $name the name
* @return void
*/
function set_name($name) {
$this->basenode->set_name($name);
}
/**
* get name property of the basenode.
*
* @access public
* @return string
*/
function get_name() {
return $this->basenode->get_name();
}
/**
* returns the response type as requested by the client
*
* @access public
* @return string
*/
function get_response_type() {
return $this->response_type;
}
}
/**
* a cpaint data node. Data nodes are used to build up the response.
*
* @package CPAINT
* @access public
* @author Dominique Stender <dstender@st-webdevelopment.de>
* @copyright 2005-2006 (Dominique Stender); All rights reserved
* @version 2.0.3
*/
class cpaint_node {
/**
* array of subnodes.
*
* @access public
* @var array $composites
*/
var $composites;
/**
* node attributes.
*
* @access public
* @var array $attributes
*/
var $attributes;
/**
* name of this node.
*
* @access public
* @var string $nodename
*/
var $nodename;
/**
* textual data of this node.
*
* @access public
* @var string $data
*/
var $data;
/**
* character encoding for input data
*
* @access private
* @var $input_encoding
*/
var $input_encoding;
/**
* PHP4 constructor.
*
* @package CPAINT
* @access public
* @return void
*/
function cpaint_node() {
$this->__construct();
}
/**
* PHP 5 constructor.
*
* @access public
* @return void
*/
function __construct() {
// initialize properties
$this->composites = array();
$this->attributes = array();
$this->data = '';
$this->set_encoding('UTF-8');
$this->set_name('');
$this->set_attribute('id', '');
}
/**
* adds a new subnode to this node.
*
* will return a reference to it for further processing.
*
* @access public
* @param string $nodename name of the new node
* @param string $id id of the new node
* @return object
*/
function &add_node($nodename, $id = '') {
$composites = count($this->composites);
// create new node
$this->composites[$composites] =& new cpaint_node();
$this->composites[$composites]->set_name($nodename);
$this->composites[$composites]->set_attribute('id', $id);
$this->composites[$composites]->set_encoding($this->input_encoding);
return $this->composites[$composites];
}
/**
* assigns textual data to this node.
*
* @access public
* @param mixed $data data to assign to this node
* @return void
*/
function set_data($data) {
$this->data = $data;
}
/**
* returns the textual data assigned to this node.
*
* @access public
* @return mixed
*/
function get_data() {
return $this->data;
}
/**
* sets the id property of this node.
*
* @deprecated deprecated since version 2.0.0
* @access public
* @param string id the id
* @return void
*/
function set_id($id) {
if ($id != '') {
$this->set_attribute('id', $id);
} // end: if
}
/**
* returns the id property if this node.
*
* @deprecated deprecated since version 2.0.0
* @access public
* @return string
*/
function get_id() {
return $this->get_attribute('id');
}
/**
* adds a new attribute to this node.
*
* @access public
* @param string $name attribute name
* @param mixed $value attribute value
* @return void
*/
function set_attribute($name, $value) {
$this->attributes[$name] = (string) $value;
}
/**
* retrieves an attribute by name.
*
* @access public
* @param string $name attribute name
* @return string
*/
function get_attribute($name) {
return $this->attributes[$name];
}
/**
* set name property.
*
* @access public
* @param string $name the name
* @return void
*/
function set_name($name) {
$this->nodename = (string) $name;
}
/**
* get name property.
*
* @access public
* @return string
*/
function get_name() {
return $this->nodename;
}
/**
* sets the character encoding for this node
*
* @access public
* @param string $encoding character encoding
* @return void
*/
function set_encoding($encoding) {
$this->input_encoding = strtoupper((string) $encoding);
}
/**
* returns the character encoding for this node
*
* @access public
* @return string
*/
function get_encoding() {
return $this->input_encoding;
}
}
/**
* static class of output transformers.
*
* @package CPAINT
* @access public
* @author Dominique Stender <dstender@st-webdevelopment.de>
* @copyright 2003-2006 (Dominique Stender); All rights reserved
* @version 2.0.3
*/
class cpaint_transformer {
/**
* toString method, used to generate response of type TEXT.
* will perform character transformation according to parameters.
*
* @access public
* @param object $node a cpaint_node object
* @return string
*/
function toString(&$node) {
$return_value = '';
foreach ($node->composites as $composite) {
$return_value .= cpaint_transformer::toString($composite);
}
$return_value .= cpaint_transformer::encode($node->get_data(), $node->get_encoding());
return $return_value;
}
/**
* XML response generator.
* will perform character transformation according to parameters.
*
* @access public
* @param object $node a cpaint_node object
* @return string
*/
function toXML(&$node) {
$return_value = '<' . $node->get_name();
// handle attributes
foreach ($node->attributes as $name => $value) {
if ($value != '') {
$return_value .= ' ' . $name . '="' . $node->get_attribute($name) . '"';
}
} // end: foreach
$return_value .= '>';
// handle subnodes
foreach ($node->composites as $composite) {
$return_value .= cpaint_transformer::toXML($composite);
}
$return_value .= cpaint_transformer::encode($node->get_data(), $node->get_encoding())
. '</' . $node->get_name() . '>';
return $return_value;
}
/**
* JSON response generator.
* will perform character transformation according to parameters.
*
* @access public
* @param object $node a cpaint_node object
* @return string
*/
function toJSON($node) {
$return_value = '';
$JSON_node = new stdClass();
// handle attributes
$JSON_node->attributes = $node->attributes;
// handle subnodes
foreach ($node->composites as $composite) {
if (!is_array($JSON_node->{$composite->nodename})) {
$JSON_node->{$composite->nodename} = array();
} // end: if
// we need to parse the JSON object again to avoid multiple encoding
$JSON_node->{$composite->nodename}[] = $GLOBALS['__cpaint_json']->parse(cpaint_transformer::toJSON($composite));
}
// handle data
$JSON_node->data = $node->data;
return $GLOBALS['__cpaint_json']->stringify($JSON_node);
}
/**
* performs conversion to JavaScript-safe UTF-8 characters
*
* @access public
* @param string $data data to convert
* @param string $encoding character encoding
* @return string
*/
function encode($data, $encoding) {
// convert string
if (function_exists('iconv')) {
// iconv is by far the most flexible approach, try this first
$return_value = iconv($encoding, 'UTF-8', $data);
} elseif ($encoding == 'ISO-8859-1') {
// for ISO-8859-1 we can use utf8-encode()
$return_value = utf8_encode($data);
} else {
// give up. if UTF-8 data was supplied everything is fine!
$return_value = $data;
} /* end: if */
// now encode non-printable characters
for ($i = 0; $i < 32; $i++) {
$return_value = str_replace(chr($i), '\u00' . sprintf('%02x', $i), $return_value);
} // end: for
// encode <, >, and & respectively for XML sanity
$return_value = str_replace(chr(0x26), '\u0026', $return_value);
$return_value = str_replace(chr(0x3c), '\u003c', $return_value);
$return_value = str_replace(chr(0x3e), '\u003e', $return_value);
return $return_value;
}
/**
* performs conversion from JavaScript encodeURIComponent() string (UTF-8) to
* the charset in use.
*
* @access public
* @param string $data data to convert
* @param string $encoding character encoding
* @return string
*/
function decode($data, $encoding) {
// convert string
if (is_string($data)) {
if (function_exists('iconv')) {
// iconv is by far the most flexible approach, try this first
$return_value = iconv('UTF-8', $encoding, $data);
} elseif ($encoding == 'ISO-8859-1') {
// for ISO-8859-1 we can use utf8-decode()
$return_value = utf8_decode($data);
} else {
// give up. if data was supplied in the correct format everything is fine!
$return_value = $data;
} // end: if
} else {
// non-string value
$return_value = $data;
} // end: if
return $return_value;
}
/**
* decodes a (nested) array of data from UTF-8 into the configured character set
*
* @access public
* @param array $data data to convert
* @param string $encoding character encoding
* @return array
*/
function decode_array($data, $encoding) {
$return_value = array();
foreach ($data as $key => $value) {
if (!is_array($value)) {
$return_value[$key] = cpaint_transformer::decode($value, $encoding);
} else {
$return_value[$key] = cpaint_transformer::decode_array($value, $encoding);
}
}
return $return_value;
}
/**
* determines the output character set
* based on input character set
*
* @access public
* @param string $encoding character encoding
* @return string
*/
function find_output_charset($encoding) {
$return_value = 'UTF-8';
if (function_exists('iconv')
|| $encoding == 'UTF-8'
|| $encoding == 'ISO-8859-1') {
$return_value = 'UTF-8';
} else {
$return_value = $encoding;
} // end: if
return $return_value;
}
}
?>