diff options
author | Andreas <andreas@immerda.ch> | 2011-12-02 13:28:30 -0300 |
---|---|---|
committer | Andreas <andreas@immerda.ch> | 2011-12-02 13:28:30 -0300 |
commit | c68062e2e418b7980282c12e9411d981a72250e6 (patch) | |
tree | 10684799b57e22085afb1267b156ea5d82aed84a /xmlrpc.php |
drupal 7.9
Diffstat (limited to 'xmlrpc.php')
-rw-r--r-- | xmlrpc.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/xmlrpc.php b/xmlrpc.php new file mode 100644 index 0000000..b202dc2 --- /dev/null +++ b/xmlrpc.php @@ -0,0 +1,18 @@ +<?php + +/** + * @file + * PHP page for handling incoming XML-RPC requests from clients. + */ + +/** + * Root directory of Drupal installation. + */ +define('DRUPAL_ROOT', getcwd()); + +include_once DRUPAL_ROOT . '/includes/bootstrap.inc'; +drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); +include_once DRUPAL_ROOT . '/includes/xmlrpc.inc'; +include_once DRUPAL_ROOT . '/includes/xmlrpcs.inc'; + +xmlrpc_server(module_invoke_all('xmlrpc')); |