streams/Zotlabs/Lib/DReport.php

59 lines
1.3 KiB
PHP
Raw Normal View History

2015-09-20 07:27:25 +00:00
<?php
2018-02-22 05:18:54 +00:00
namespace Zotlabs\Lib;
2015-09-20 07:27:25 +00:00
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->name = EMPTY_STR;
2015-09-20 07:27:25 +00:00
$this->message_id = $message_id;
$this->status = $status;
$this->date = datetime_convert();
}
function update($status) {
$this->status = $status;
$this->date = datetime_convert();
}
function set_name($name) {
$this->name = $name;
2015-09-21 03:21:54 +00:00
}
function addto_update($status) {
$this->status = $this->status . ' ' . $status;
}
2015-09-20 07:27:25 +00:00
function set($arr) {
$this->location = $arr['location'];
$this->sender = $arr['sender'];
$this->recipient = $arr['recipient'];
$this->name = $arr['name'];
2015-09-20 07:27:25 +00:00
$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,
2018-06-26 03:55:53 +00:00
'name' => $this->name,
2015-09-20 07:27:25 +00:00
'message_id' => $this->message_id,
'status' => $this->status,
'date' => $this->date
);
}
}