function xmlrpc_help

Implements hook_help().

File

drupal/core/modules/xmlrpc/xmlrpc.module, line 11
Enables XML-RPC functionality.

Code

function xmlrpc_help($path, $args) {
  switch ($path) {
    case 'admin/help#xmlrpc':
      $output = '';
      $output .= '<p>' . t('The XML-RPC module gives external systems the opportunity to communicate with the site through the XML-RPC protocol. Pointing an XML-RPC client at <a href="@xmlrpc">xmlrpc.php</a> allows this communication to take place. For more information, see the online handbook entry for <a href="@xmlrpcapi">XML-RPC API</a>.', array(
        '@xmlrpc' => url('xmlrpc.php', array(
          'absolute' => TRUE,
        )),
        '@xmlrpcapi' => 'http://drupal.org/node/44895',
      )) . '</p>';
      return $output;
  }
}