14 lines
294 B
PHP
14 lines
294 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
* PHP page for handling incoming XML-RPC requests from clients.
|
||
|
|
*/
|
||
|
|
|
||
|
|
include_once './includes/bootstrap.inc';
|
||
|
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
||
|
|
include_once './includes/xmlrpc.inc';
|
||
|
|
include_once './includes/xmlrpcs.inc';
|
||
|
|
|
||
|
|
xmlrpc_server(module_invoke_all('xmlrpc'));
|