diff options
author | redmatrix <git@macgirvin.com> | 2016-02-19 14:02:55 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-19 14:02:55 -0800 |
commit | cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7 (patch) | |
tree | bf9909d3b2354d519edcc8a6e276817c9ad0e6f5 /Zotlabs | |
parent | ebc66d7008adcfb104430ae527609df5da74188d (diff) | |
download | volse-hubzilla-cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7.tar.gz volse-hubzilla-cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7.tar.bz2 volse-hubzilla-cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7.zip |
move dreport to zotlabs\zot namespace
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Zot/DReport.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Zotlabs/Zot/DReport.php b/Zotlabs/Zot/DReport.php new file mode 100644 index 000000000..c90f4f670 --- /dev/null +++ b/Zotlabs/Zot/DReport.php @@ -0,0 +1,55 @@ +<?php +namespace Zotlabs\Zot; + +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 + ); + } +} |