function GetVariablesObject()
 {
     wof_start();
     echo '<GetVariablesObjectResponse xmlns="http://www.cuahsi.org/his/1.1/ws/">';
     echo wof_GetVariables();
     echo '</GetVariablesObjectResponse>';
     wof_finish();
 }
Exemple #2
0
 /**
  * Implement GetVariablesObject
  *
  */
 public function GetVariablesObject()
 {
     if ($this->validate_token()) {
         write_XML_header();
         echo wof_GetVariables();
         exit;
     }
 }