summaryrefslogtreecommitdiff
path: root/xmlrpc.php
blob: 7b52d5166891a7ae5e465330956e81beb37883ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
// $Id$

include_once 'includes/bootstrap.inc';
include_once 'includes/common.inc';
include_once 'includes/xmlrpc.inc';
include_once 'includes/xmlrpcs.inc';

$functions = module_invoke_all('xmlrpc');

$server = new xmlrpc_server($functions);

?>