17 lines
304 B
PHP
17 lines
304 B
PHP
|
<?php
|
||
|
|
||
|
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);
|
||
|
|
||
|
?>
|