diff options
author | mark <mark> | 2010-08-12 21:31:19 +0000 |
---|---|---|
committer | mark <mark> | 2010-08-12 21:31:19 +0000 |
commit | 3706609762d9cec964f337e74829031b895ddbac (patch) | |
tree | 15b112f7b0f204d2914722850184414380226526 /fs_selfservice/drupal/freeside.class.php | |
parent | d1c3bdca8b00a5accace9121edabc675698af001 (diff) |
self-service Drupal module, RT#9380
Diffstat (limited to 'fs_selfservice/drupal/freeside.class.php')
-rw-r--r-- | fs_selfservice/drupal/freeside.class.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/fs_selfservice/drupal/freeside.class.php b/fs_selfservice/drupal/freeside.class.php new file mode 100644 index 000000000..161156a22 --- /dev/null +++ b/fs_selfservice/drupal/freeside.class.php @@ -0,0 +1,33 @@ +<?php + +class FreesideSelfService { + + public $URL = ''; + function FreesideSelfService() { + $this->URL = 'http://' . variable_get('freeside_hostname','') . ':8080'; + $this; + } + + public function __call($name, $arguments) { + + error_log("[FreesideSelfService] $name called, sending to ". $this->URL); + + $request = xmlrpc_encode_request("FS.ClientAPI_XMLRPC.$name", $arguments); + $context = stream_context_create( array( 'http' => array( + 'method' => "POST", + 'header' => "Content-Type: text/xml", + 'content' => $request + ))); + $file = file_get_contents($this->URL, false, $context); + $response = xmlrpc_decode($file); + if (xmlrpc_is_fault($response)) { + trigger_error("[FreesideSelfService] XML-RPC communication error: $response[faultString] ($response[faultCode])"); + } else { + //error_log("[FreesideSelfService] $response"); + return $response; + } + } + +} + +?> |