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/RODSQueryCondition.class.php')
-rw-r--r--apps/files_external/3rdparty/irodsphp/prods/src/RODSQueryCondition.class.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/irodsphp/prods/src/RODSQueryCondition.class.php b/apps/files_external/3rdparty/irodsphp/prods/src/RODSQueryCondition.class.php
new file mode 100644
index 00000000000..ecc02820656
--- /dev/null
+++ b/apps/files_external/3rdparty/irodsphp/prods/src/RODSQueryCondition.class.php
@@ -0,0 +1,22 @@
+<?php
+
+class RODSQueryCondition
+{
+ public $name;
+ public $value;
+ public $op;
+
+ public function __construct($name, $value, $op = "=")
+ {
+ $this->name = $name;
+ $this->value = $value;
+ $this->op = $op;
+ }
+
+ public function __toString()
+ {
+ return "$this->name $this->op '$this->value'";
+ }
+
+}
+ \ No newline at end of file