aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/DReport.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2018-02-22 15:10:20 -0500
committerAndrew Manning <tamanning@zoho.com>2018-02-22 15:10:20 -0500
commit70719c67d30810c8127707b0dd1fd7ed66aa4a9a (patch)
tree3dd9d547d2e15007689106cc26d60ba067b3a7b8 /Zotlabs/Lib/DReport.php
parent43fca182e3915734587abf389d819546ebade3a4 (diff)
parent80ce2def461705ebd0853e99ddfc0d1bc1de2915 (diff)
downloadvolse-hubzilla-70719c67d30810c8127707b0dd1fd7ed66aa4a9a.tar.gz
volse-hubzilla-70719c67d30810c8127707b0dd1fd7ed66aa4a9a.tar.bz2
volse-hubzilla-70719c67d30810c8127707b0dd1fd7ed66aa4a9a.zip
Merge branch 'dev' into oauth2
Diffstat (limited to 'Zotlabs/Lib/DReport.php')
-rw-r--r--Zotlabs/Lib/DReport.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/Zotlabs/Lib/DReport.php b/Zotlabs/Lib/DReport.php
new file mode 100644
index 000000000..a68d6c18f
--- /dev/null
+++ b/Zotlabs/Lib/DReport.php
@@ -0,0 +1,55 @@
+<?php
+namespace Zotlabs\Lib;
+
+class DReport {
+
+ private $location;
+ private $sender;
+ private $recipient;
+ private $message_id;
+ private $status;
+ private $date;
+
+ function __construct($location,$sender,$recipient,$message_id,$status = 'deliver') {
+ $this->location = $location;
+ $this->sender = $sender;
+ $this->recipient = $recipient;
+ $this->message_id = $message_id;
+ $this->status = $status;
+ $this->date = datetime_convert();
+ }
+
+ function update($status) {
+ $this->status = $status;
+ $this->date = datetime_convert();
+ }
+
+ function addto_recipient($name) {
+ $this->recipient = $this->recipient . ' ' . $name;
+ }
+
+ function addto_update($status) {
+ $this->status = $this->status . ' ' . $status;
+ }
+
+
+ function set($arr) {
+ $this->location = $arr['location'];
+ $this->sender = $arr['sender'];
+ $this->recipient = $arr['recipient'];
+ $this->message_id = $arr['message_id'];
+ $this->status = $arr['status'];
+ $this->date = $arr['date'];
+ }
+
+ function get() {
+ return array(
+ 'location' => $this->location,
+ 'sender' => $this->sender,
+ 'recipient' => $this->recipient,
+ 'message_id' => $this->message_id,
+ 'status' => $this->status,
+ 'date' => $this->date
+ );
+ }
+}