API Joomla 1.5.26
Documentation des API du CMS Joomla en version 1.5
|
build_client_wrapper_code | ( | $ | client, |
$ | verbatim_client_copy, | ||
$ | prefix = 'xmlrpc' |
||
) |
Given necessary info, generate php code that will rebuild a client object Take care that no full checking of input parameters is done to ensure that valid php code is emitted. private
Références $client.
Référencé par build_remote_method_wrapper_code(), et wrap_xmlrpc_server().
build_remote_method_wrapper_code | ( | $ | client, |
$ | methodname, | ||
$ | xmlrpcfuncname, | ||
$ | msig, | ||
$ | mdesc = '' , |
||
$ | timeout = 0 , |
||
$ | protocol = '' , |
||
$ | client_copy_mode = 0 , |
||
$ | prefix = 'xmlrpc' , |
||
$ | decode_php_objects = false , |
||
$ | encode_php_objects = false , |
||
$ | decode_fault = false , |
||
$ | fault_response = '' |
||
) |
Given the necessary info, build php code that creates a new function to invoke a remote xmlrpc method. Take care that no full checking of input parameters is done to ensure that valid php code is emitted. Note: real spaghetti code follows... private
Références $client, $i, et build_client_wrapper_code().
Référencé par wrap_xmlrpc_method().
php_2_xmlrpc_type | ( | $ | phptype | ) |
PHP-XMLRPC "wrapper" functions Generate stubs to transparently access xmlrpc methods as php functions and viceversa
G. Giunta (C) 2006
Given a string defining a php type or phpxmlrpc type (loosely defined: strings accepted come from javadoc blocks), return corresponding phpxmlrpc type. NB: for php 'resource' types returns empty string, since resources cannot be serialized; for php class names returns 'struct', since php objects can be serialized as xmlrpc structs
string | $phptype |
Références $GLOBALS.
Référencé par _xmlrpcs_multicall_do_call_phpvals(), et wrap_php_function().
wrap_php_function | ( | $ | funcname, |
$ | newfuncname = '' , |
||
$ | extra_options = array() |
||
) |
Given a user-defined PHP function, create a PHP 'wrapper' function that can be exposed as xmlrpc method from an xmlrpc_server object and called from remote clients (as well as its corresponding signature info).
Since php is a typeless language, to infer types of input and output parameters, it relies on parsing the javadoc-style comment block associated with the given function. Usage of xmlrpc native types (such as datetime.dateTime.iso8601 and base64) in the
tag | is also allowed, if you need the php function to receive/send data in that particular format (note that base64 encoding/decoding is transparently carried out by the lib, while datetime vals are passed around as strings) |
Known limitations:
tags | using param names in a different order from the function prototype is not considered valid (to be fixed?) |
string | $funcname | the name of the PHP user function to be exposed as xmlrpc method; array($obj, 'methodname') might be ok too, in the future... |
string | $newfuncname | (optional) name for function to be created |
array | $extra_options | (optional) array of options for conversion. valid values include: bool return_source when true, php code w. function definition will be returned, not evaluated bool encode_php_objs let php objects be sent to server using the 'improved' xmlrpc notation, so server can deserialize them as php objects bool decode_php_objs --- WARNING !!! possible security hazard. only use it with trusted servers --- bool suppress_warnings remove from produced xml any runtime warnings due to the php function being invoked |
Références $desc, $doc, $GLOBALS, $i, $params, elseif, et php_2_xmlrpc_type().
wrap_xmlrpc_method | ( | $ | client, |
$ | methodname, | ||
$ | extra_options = 0 , |
||
$ | timeout = 0 , |
||
$ | protocol = '' , |
||
$ | newfuncname = '' |
||
) |
Given an xmlrpc client and a method name, register a php wrapper function that will call it and return results using native php types for both params and results. The generated php function will return an xmlrpcresp oject for failed xmlrpc calls
Known limitations:
Notes: the connection properties of the given client will be copied and reused for the connection used during the call to the generated php function. Calling the generated php function 'might' be slow: a new xmlrpc client is created on every invocation and an xmlrpc-connection opened+closed. An extra 'debug' param is appended to param list of xmlrpc method, useful for debugging purposes.
xmlrpc_client | $client | an xmlrpc client set up correctly to communicate with target server |
string | $methodname | the xmlrpc method to be mapped to a php function |
array | $extra_options | array of options that specify conversion details. valid ptions include integer signum the index of the method signature to use in mapping (if method exposes many sigs) integer timeout timeout (in secs) to be used when executing function/calling remote method string protocol 'http' (default), 'http11' or 'https' string new_function_name the name of php function to create. If unsepcified, lib will pick an appropriate name string return_source if true return php code w. function definition instead fo function name bool encode_php_objs let php objects be sent to server using the 'improved' xmlrpc notation, so server can deserialize them as php objects bool decode_php_objs --- WARNING !!! possible security hazard. only use it with trusted servers --- mixed return_on_fault a php value to be returned when the xmlrpc call fails/returns a fault response (by default the xmlrpcresp object is returned in this case). If a string is used, 'faultCode' and 'faultString' tokens will be substituted with actual error values bool debug set it to 1 or 2 to see debug results of querying server for method synopsis |
Références $client, $debug, et build_remote_method_wrapper_code().
Référencé par wrap_xmlrpc_server().
wrap_xmlrpc_server | ( | $ | client, |
$ | extra_options = array() |
||
) |
Similar to wrap_xmlrpc_method, but will generate a php class that wraps all xmlrpc methods exposed by the remote server as own methods. For more details see wrap_xmlrpc_method.
xmlrpc_client | $client | the client obj all set to query the desired server |
array | $extra_options | list of options for wrapped code |
Références $client, build_client_wrapper_code(), et wrap_xmlrpc_method().
xmlrpc_2_php_type | ( | $ | xmlrpctype | ) |
Given a string defining a phpxmlrpc type return corresponding php type.
string | $xmlrpctype |
Références $GLOBALS.