Skip to content
Snippets Groups Projects
Select Git revision
  • issue-525
  • develop default
  • topics/add-contribution-info
  • master
  • master-no-logins
  • issue-424
  • svn-trunk
  • svn-staging
  • svn-testing
  • 7.6.1
  • 7.6
  • 7.5.1
  • 7.5
  • 7.4
  • 7.3.1
  • 7.3
  • 7.2
  • 7.1
  • 2012-04-18
  • 2012-04-03
  • 2012-04-02
  • 2012-03-01
  • 2012-02-07
  • 20120207
  • 2012-01-13
  • 2012-01-12
  • 2011-12-16
  • 2011-12-05
  • 2011-11-17
29 results

xmlrpc.php

Blame
  • Forked from UNL Information Services / UNL-CMS
    1093 commits behind the upstream repository.
    xmlrpc.php 533 B
    <?php
    // $Id: xmlrpc.php,v 1.19 2009/12/13 13:06:45 dries Exp $
    
    /**
     * @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';
    
    $services = module_invoke_all('xmlrpc');
    drupal_alter('xmlrpc', $services);
    xmlrpc_server($services);