summaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/irodsphp/prods/src/RODSDirStats.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/irodsphp/prods/src/RODSDirStats.class.php')
-rw-r--r--apps/files_external/3rdparty/irodsphp/prods/src/RODSDirStats.class.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/irodsphp/prods/src/RODSDirStats.class.php b/apps/files_external/3rdparty/irodsphp/prods/src/RODSDirStats.class.php
new file mode 100644
index 00000000000..16d24584f43
--- /dev/null
+++ b/apps/files_external/3rdparty/irodsphp/prods/src/RODSDirStats.class.php
@@ -0,0 +1,25 @@
+<?php
+
+class RODSDirStats
+{
+ public $name;
+ public $owner;
+ public $ownerzone;
+ public $mtime;
+ public $ctime;
+ public $id;
+ public $comments;
+
+ public function __construct($name, $owner, $ownerzone, $mtime, $ctime, $id, $comments)
+ {
+ $this->name = $name;
+ $this->owner = $owner;
+ $this->ownerzone = $ownerzone;
+ $this->mtime = $mtime;
+ $this->ctime = $ctime;
+ $this->id = $id;
+ $this->comments = $comments;
+ }
+
+}
+ \ No newline at end of file