aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Zot
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-02-21 21:18:54 -0800
committerzotlabs <mike@macgirvin.com>2018-02-21 21:18:54 -0800
commit56d1c083174aacd019176cd79236d84f52604dd8 (patch)
tree49c797defe8be400f53891d8b76e8febc7c32e8e /Zotlabs/Zot
parent2d69b419ff9a0b2186d9479447f75f37b9102fa6 (diff)
downloadvolse-hubzilla-56d1c083174aacd019176cd79236d84f52604dd8.tar.gz
volse-hubzilla-56d1c083174aacd019176cd79236d84f52604dd8.tar.bz2
volse-hubzilla-56d1c083174aacd019176cd79236d84f52604dd8.zip
move dreport from zot to lib
Diffstat (limited to 'Zotlabs/Zot')
-rw-r--r--Zotlabs/Zot/DReport.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/Zotlabs/Zot/DReport.php b/Zotlabs/Zot/DReport.php
deleted file mode 100644
index c90f4f670..000000000
--- a/Zotlabs/Zot/DReport.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?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
- );
- }
-}