Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MsParamArray.class.php')
-rw-r--r--apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MsParamArray.class.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MsParamArray.class.php b/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MsParamArray.class.php
new file mode 100644
index 00000000000..b747c098dd2
--- /dev/null
+++ b/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MsParamArray.class.php
@@ -0,0 +1,21 @@
+<?php
+
+require_once(dirname(__FILE__) . "/../autoload.inc.php");
+class RP_MsParamArray extends RODSPacket
+{
+ // if one of the packlet is an array of packets, define it here.
+ protected $array_rp_type;
+
+ public function __construct(array $MsParam_PI = array(),
+ $oprType = 0)
+ {
+ $this->array_rp_type = array("MsParam_PI" => "RP_MsParam");
+
+ $packlets = array("paramLen" => count($MsParam_PI),
+ "oprType" => $oprType, "MsParam_PI" => $MsParam_PI);
+ parent::__construct("MsParamArray_PI", $packlets);
+ }
+
+}
+
+?> \ No newline at end of file