aboutsummaryrefslogtreecommitdiffstats
path: root/include/DReport.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-19 14:02:55 -0800
committerredmatrix <git@macgirvin.com>2016-02-19 14:02:55 -0800
commitcfa2ac2d0acc91d0d58b59156324f4ae2fea03a7 (patch)
treebf9909d3b2354d519edcc8a6e276817c9ad0e6f5 /include/DReport.php
parentebc66d7008adcfb104430ae527609df5da74188d (diff)
downloadvolse-hubzilla-cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7.tar.gz
volse-hubzilla-cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7.tar.bz2
volse-hubzilla-cfa2ac2d0acc91d0d58b59156324f4ae2fea03a7.zip
move dreport to zotlabs\zot namespace
Diffstat (limited to 'include/DReport.php')
-rw-r--r--include/DReport.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/include/DReport.php b/include/DReport.php
deleted file mode 100644
index ef86c8cbc..000000000
--- a/include/DReport.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-
-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
- );
- }
-}