mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
Created conversation message object
This commit is contained in:
parent
2a24d63a5c
commit
f84a8df0d8
40
classes/models/ConversationMessage.php
Normal file
40
classes/models/ConversationMessage.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* Conversation message object
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
class ConversationMessage extends BaseUniqueObjectFromUser {
|
||||
|
||||
//Private fields
|
||||
private $image_path;
|
||||
private $message;
|
||||
|
||||
//Set and get image path
|
||||
public function set_image_path(string $image_path){
|
||||
$this->image_path = $image_path == "" ? null : $image_path;
|
||||
}
|
||||
|
||||
public function has_image_path() : bool {
|
||||
return $this->image_path != null;
|
||||
}
|
||||
|
||||
public function get_image_path() : string {
|
||||
return $this->image_path != null ? $this->image_path : "null";
|
||||
}
|
||||
|
||||
|
||||
//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