drupal_xmlrpc

Versions
4.6 – 5
drupal_xmlrpc()

Implementation of hook_xmlrpc().

Code

modules/drupal.module, line 121

<?php
function drupal_xmlrpc() {
  return array(
    array(
      'drupal.site.ping',
      'drupal_directory_ping',
      array('boolean', 'string', 'string', 'string', 'string', 'string'),
      t('Handling ping request')),
    array(
      'drupal.login',
      'drupal_login',
      array('int', 'string', 'string'),
      t('Logging into a drupal site')));
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.