From a415c29efee45520ae252d2aa28f1083a521cd7b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 09:56:49 +0200 Subject: Adding upstream version 6.4.3+dfsg1. Signed-off-by: Daniel Baumann --- wp-includes/IXR/class-IXR-clientmulticall.php | 55 +++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 wp-includes/IXR/class-IXR-clientmulticall.php (limited to 'wp-includes/IXR/class-IXR-clientmulticall.php') diff --git a/wp-includes/IXR/class-IXR-clientmulticall.php b/wp-includes/IXR/class-IXR-clientmulticall.php new file mode 100644 index 0000000..d7aa67b --- /dev/null +++ b/wp-includes/IXR/class-IXR-clientmulticall.php @@ -0,0 +1,55 @@ +useragent = 'The Incutio XML-RPC PHP Library (multicall client)'; + } + + /** + * PHP4 constructor. + */ + public function IXR_ClientMulticall( $server, $path = false, $port = 80 ) { + self::__construct( $server, $path, $port ); + } + + /** + * @since 1.5.0 + * @since 5.5.0 Formalized the existing `...$args` parameter by adding it + * to the function signature. + */ + function addCall( ...$args ) + { + $methodName = array_shift($args); + $struct = array( + 'methodName' => $methodName, + 'params' => $args + ); + $this->calls[] = $struct; + } + + /** + * @since 1.5.0 + * @since 5.5.0 Formalized the existing `...$args` parameter by adding it + * to the function signature. + * + * @return bool + */ + function query( ...$args ) + { + // Prepare multicall, then call the parent::query() method + return parent::query('system.multicall', $this->calls); + } +} -- cgit v1.2.3