function xmlrpc_message_set
7.x xmlrpc.inc | xmlrpc_message_set($value = NULL) |
6.x xmlrpc.inc | xmlrpc_message_set($value = NULL) |
Store a copy of the $xmlrpc_message object temporarily.
Parameters
$value: Object
Return value
The most recently stored $xmlrpc_message
5 calls to xmlrpc_message_set()
- xmlrpc_message_cdata in drupal-6.x/
includes/ xmlrpc.inc - xmlrpc_message_get in drupal-6.x/
includes/ xmlrpc.inc - xmlrpc_message_parse in drupal-6.x/
includes/ xmlrpc.inc - Parse an XML-RPC message. If parsing fails, the faultCode and faultString will be added to the message object.
- xmlrpc_message_tag_close in drupal-6.x/
includes/ xmlrpc.inc - xmlrpc_message_tag_open in drupal-6.x/
includes/ xmlrpc.inc
File
- drupal-6.x/
includes/ xmlrpc.inc, line 190 - Drupal XML-RPC library. Based on the IXR - The Incutio XML-RPC Library - (c) Incutio Ltd 2002-2005 Version 1.7 (beta) - Simon Willison, 23rd May 2005 Site: http://scripts.incutio.com/xmlrpc/ Manual: http://scripts.incutio.com/xmlrpc/manual.php This…
Code
function xmlrpc_message_set($value = NULL) {
static $xmlrpc_message;
if ($value) {
$xmlrpc_message = $value;
}
return $xmlrpc_message;
}