mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
Created UnreadConversation object
This commit is contained in:
parent
0928248ae3
commit
cd367382a2
54
classes/models/UnreadConversation.php
Normal file
54
classes/models/UnreadConversation.php
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Unread conversation model
|
||||||
|
*
|
||||||
|
* @author Pierre HUBERT
|
||||||
|
*/
|
||||||
|
|
||||||
|
class UnreadConversation extends BaseUniqueObjectFromUser {
|
||||||
|
|
||||||
|
//Private fields
|
||||||
|
private $conv_name;
|
||||||
|
private $last_active = -1;
|
||||||
|
private $message;
|
||||||
|
|
||||||
|
//Set and get conversation name
|
||||||
|
public function set_conv_name(string $conv_name){
|
||||||
|
$this->conv_name = $conv_name == "" ? null : $conv_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function has_conv_name() : bool {
|
||||||
|
return $this->conv_name != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function get_conv_name() : string {
|
||||||
|
return $this->conv_name != null ? $this->conv_name : "null";
|
||||||
|
}
|
||||||
|
|
||||||
|
//Set and get last conversation activity
|
||||||
|
public function set_last_active(int $last_active){
|
||||||
|
$this->last_active = $last_active;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function has_last_active() : bool {
|
||||||
|
return $this->last_active > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function get_last_active() : int {
|
||||||
|
return $this->last_active;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Set and get message
|
||||||
|
public function set_message(string $message){
|
||||||
|
$this->message = $message == "" ? null : $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function has_message() : bool {
|
||||||
|
return $this->message != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function get_message() : string {
|
||||||
|
return $this->message != null ? $this->message : "null";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user