drupal/xmlrpc.php

18 lines
289 B
PHP
Raw Normal View History

<?php
// $Id$
/**
* @file
* PHP page for handling incoming XML-RPC requests from clients.
*/
include_once 'includes/bootstrap.inc';
drupal_bootstrap('full');
include_once 'includes/xmlrpcs.inc';
$functions = module_invoke_all('xmlrpc');
$server = new xmlrpc_server($functions);
?>