initial checkin delivery report class
This commit is contained in:
parent
f4a4cf1402
commit
77df590f65
46
include/DReport.php
Normal file
46
include/DReport.php
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?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 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
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -1 +1 @@
|
|||||||
2015-09-19.1160
|
2015-09-20.1161
|
||||||
|
Reference in New Issue
Block a user