From 2d69b419ff9a0b2186d9479447f75f37b9102fa6 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 21 Feb 2018 20:59:30 -0800 Subject: move Zotlabs\Zot\Verify to Zotlabs\Lib\Verify as part of the z6 re-org --- Zotlabs/Zot/Verify.php | 63 -------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 Zotlabs/Zot/Verify.php (limited to 'Zotlabs/Zot') diff --git a/Zotlabs/Zot/Verify.php b/Zotlabs/Zot/Verify.php deleted file mode 100644 index 7abe38d17..000000000 --- a/Zotlabs/Zot/Verify.php +++ /dev/null @@ -1,63 +0,0 @@ - Date: Wed, 21 Feb 2018 21:18:54 -0800 Subject: move dreport from zot to lib --- Zotlabs/Zot/DReport.php | 55 ------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 Zotlabs/Zot/DReport.php (limited to 'Zotlabs/Zot') 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 @@ -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 - ); - } -} -- cgit v1.2.3