A Drupal-CiviCRM setup
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
417B

  1. <?php
  2. /**
  3. * @file
  4. * PHP page for handling incoming XML-RPC requests from clients.
  5. */
  6. /**
  7. * Root directory of Drupal installation.
  8. */
  9. define('DRUPAL_ROOT', getcwd());
  10. include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
  11. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  12. include_once DRUPAL_ROOT . '/includes/xmlrpc.inc';
  13. include_once DRUPAL_ROOT . '/includes/xmlrpcs.inc';
  14. xmlrpc_server(module_invoke_all('xmlrpc'));