summaryrefslogtreecommitdiffstats
path: root/wp-includes/IXR/class-IXR-clientmulticall.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:56:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:56:49 +0000
commita415c29efee45520ae252d2aa28f1083a521cd7b (patch)
treef4ade4b6668ecc0765de7e1424f7c1427ad433ff /wp-includes/IXR/class-IXR-clientmulticall.php
parentInitial commit. (diff)
downloadwordpress-a415c29efee45520ae252d2aa28f1083a521cd7b.tar.xz
wordpress-a415c29efee45520ae252d2aa28f1083a521cd7b.zip
Adding upstream version 6.4.3+dfsg1.upstream/6.4.3+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'wp-includes/IXR/class-IXR-clientmulticall.php')
-rw-r--r--wp-includes/IXR/class-IXR-clientmulticall.php55
1 files changed, 55 insertions, 0 deletions
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 @@
+<?php
+/**
+ * IXR_ClientMulticall
+ *
+ * @package IXR
+ * @since 1.5.0
+ */
+class IXR_ClientMulticall extends IXR_Client
+{
+ var $calls = array();
+
+ /**
+ * PHP5 constructor.
+ */
+ function __construct( $server, $path = false, $port = 80 )
+ {
+ parent::IXR_Client($server, $path, $port);
+ $this->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);
+ }
+}