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

/**
 * @file
 * PHP page for handling incoming XML-RPC requests from clients.
 */

include_once 'includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
include_once 'includes/xmlrpcs.inc';

xmlrpc_server(module_invoke_all('xmlrpc'));
?>