summaryrefslogtreecommitdiff
path: root/fs_selfservice/php/freeside.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'fs_selfservice/php/freeside.class.php')
-rw-r--r--fs_selfservice/php/freeside.class.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/fs_selfservice/php/freeside.class.php b/fs_selfservice/php/freeside.class.php
deleted file mode 100644
index 21e89b47f..000000000
--- a/fs_selfservice/php/freeside.class.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-class FreesideSelfService {
-
- //Change this to match the location of your selfservice xmlrpc.cgi or daemon
- var $URL = 'https://www.example.com/selfservice/xmlrpc.cgi';
-
- function FreesideSelfService() {
- $this;
- }
-
- public function __call($name, $arguments) {
-
- error_log("[FreesideSelfService] $name called, sending to ". $this->URL);
-
- $request = xmlrpc_encode_request("FS.SelfService.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;
- }
- }
-
-}
-
-?>