18 lines
311 B
PHP
18 lines
311 B
PHP
<?php
|
|
// $Id$
|
|
|
|
include_once "includes/xmlrpcs.inc";
|
|
include_once "includes/common.inc";
|
|
|
|
$functions = array();
|
|
|
|
foreach (module_list() as $name) {
|
|
if (module_hook($name, "xmlrpc")) {
|
|
$functions = array_merge($functions, module_invoke($name, "xmlrpc"));
|
|
}
|
|
}
|
|
|
|
$server = new xmlrpc_server($functions);
|
|
|
|
?>
|