Example #1
0
 function Format($Data, $Request)
 {
     $XML = new XMLConvertor();
     $Result = $XML->array_to_xml($Data);
     $this->Headers = array("content-type" => "text/xml");
     return $Result;
 }
Example #2
0
 function Format($Data)
 {
     $XML = new XMLConvertor();
     return $XML->xml_to_array($Data);
 }